From 732e7f7cac724e7247667ae183075951645b3836 Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 29 Jun 2025 10:52:08 -0700 Subject: [PATCH] Fix the DLVS script --- LinuxGeneralCompiler/dlvs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LinuxGeneralCompiler/dlvs.sh b/LinuxGeneralCompiler/dlvs.sh index e3fe42e..05905c8 100644 --- a/LinuxGeneralCompiler/dlvs.sh +++ b/LinuxGeneralCompiler/dlvs.sh @@ -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 /