Fix the DLVS script

This commit is contained in:
zontreck 2025-06-29 10:52:08 -07:00
parent fac2c62c18
commit 732e7f7cac

View file

@ -21,9 +21,10 @@ download_game() {
# Download game files
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
mkdir -pv $extract_path
cd $extract_path
tar -xvf "${download_path}.tar.gz" && rm "${download_path}"/"${version}"*.tar.gz
cd /