Update updater.sh

This commit is contained in:
earthlng 2018-11-23 01:49:16 +00:00 committed by GitHub
parent d2029542a7
commit 80109d72ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ download_file () {
dlcmd="wget -O $tf"
fi
$dlcmd "${url}" >/dev/null && echo "$tf" || echo "" # return the temp-filename (or empty string on error)
$dlcmd "${url}" &>/dev/null && echo "$tf" || echo "" # return the temp-filename (or empty string on error)
}