From 80109d72add1221378d8bf550521e6f434faa3dd Mon Sep 17 00:00:00 2001 From: earthlng Date: Fri, 23 Nov 2018 01:49:16 +0000 Subject: [PATCH] Update updater.sh --- updater.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updater.sh b/updater.sh index 69be625..d32a6cb 100755 --- a/updater.sh +++ b/updater.sh @@ -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) }