From 104b8c340c0cd762ef07dcad83b6b5fc4ac9ec0b Mon Sep 17 00:00:00 2001 From: billz Date: Fri, 6 Oct 2023 14:40:16 +0200 Subject: [PATCH] Update set local file timestamp to when it was downloaded --- installers/update_blocklist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/update_blocklist.sh b/installers/update_blocklist.sh index 81e3d931..0ba729ae 100755 --- a/installers/update_blocklist.sh +++ b/installers/update_blocklist.sh @@ -15,7 +15,7 @@ update_url=$1 file=$2 destination=$3 -wget -q ${update_url} -O ${destination}${file} &> /dev/null +wget -q --no-use-server-timestamps ${update_url} -O ${destination}${file} &> /dev/null echo "$?"