From 217cfc2b4da05b2c9ef6e3b70a52db12826ac39f Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 29 Jun 2025 11:14:51 -0700 Subject: [PATCH] Alter dlvs to use curl instead --- LinuxGeneralCompiler/dlvs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LinuxGeneralCompiler/dlvs.sh b/LinuxGeneralCompiler/dlvs.sh index 19abc11..028d684 100644 --- a/LinuxGeneralCompiler/dlvs.sh +++ b/LinuxGeneralCompiler/dlvs.sh @@ -21,7 +21,7 @@ download_game() { # Download game files 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 mkdir -pv $extract_path