From 61fb708b7386dc7cf77c615dbe4d9ef874d2dfaa Mon Sep 17 00:00:00 2001 From: Akkadius Date: Sun, 14 Jan 2018 22:52:02 -0600 Subject: [PATCH] Disable caching for eqemu_server.pl wget requests [skip ci] --- utils/scripts/eqemu_server.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/scripts/eqemu_server.pl b/utils/scripts/eqemu_server.pl index 853046b7f..61679bfa2 100644 --- a/utils/scripts/eqemu_server.pl +++ b/utils/scripts/eqemu_server.pl @@ -1044,7 +1044,7 @@ sub get_remote_file{ } #::: wget -O db_update/db_update_manifest.txt https://raw.githubusercontent.com/EQEmu/Server/master/utils/sql/db_update_manifest.txt - $wget = `wget -N --no-check-certificate --quiet -O $destination_file $request_url`; + $wget = `wget -N --cache=no --no-check-certificate --quiet -O $destination_file $request_url`; print "[Download] Saved: (" . $destination_file . ") from " . $request_url . "\n" if !$silent_download; if($wget=~/unable to resolve/i){ print "Error, no connection or failed request...\n\n";