Update set local file timestamp to when it was downloaded

This commit is contained in:
billz 2023-10-06 14:40:16 +02:00
parent 3e491c17f4
commit 104b8c340c
1 changed files with 1 additions and 1 deletions

View File

@ -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 "$?"