Fix the DLVS script
This commit is contained in:
parent
fac2c62c18
commit
732e7f7cac
1 changed files with 2 additions and 1 deletions
|
@ -21,9 +21,10 @@ download_game() {
|
||||||
|
|
||||||
# Download game files
|
# Download game files
|
||||||
download_path="/vs_server_linux-x64_${version}"
|
download_path="/vs_server_linux-x64_${version}"
|
||||||
wget "$url" -O "${download_path}.tar.gz"
|
wget --no-check-certificate --continue "$url" -O "${download_path}.tar.gz"
|
||||||
|
|
||||||
# Extract and clean up
|
# Extract and clean up
|
||||||
|
mkdir -pv $extract_path
|
||||||
cd $extract_path
|
cd $extract_path
|
||||||
tar -xvf "${download_path}.tar.gz" && rm "${download_path}"/"${version}"*.tar.gz
|
tar -xvf "${download_path}.tar.gz" && rm "${download_path}"/"${version}"*.tar.gz
|
||||||
cd /
|
cd /
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue