Alter dlvs to use curl instead

This commit is contained in:
zontreck 2025-06-29 11:14:51 -07:00
parent b793eb7591
commit 217cfc2b4d

View file

@ -21,7 +21,7 @@ download_game() {
# Download game files # Download game files
download_path="/vs_server_linux-x64_${version}" download_path="/vs_server_linux-x64_${version}"
wget --no-check-certificate --continue "$url" -O "${download_path}.tar.gz" curl -k "$url" -o "${download_path}.tar.gz"
# Extract and clean up # Extract and clean up
mkdir -pv $extract_path mkdir -pv $extract_path