diff options
author | midipix <writeonce@midipix.org> | 2020-09-25 16:54:00 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-09-25 16:56:02 +0000 |
commit | 8794af8a69b47ac8f66d3dda7ae176e0e9655f7a (patch) | |
tree | 0c3116365d07f90ce682fc9034294c82555e5b60 /once | |
parent | 1fc99be81c57b9a5c56508c88547dc38e5d4e360 (diff) | |
download | mpackage-8794af8a69b47ac8f66d3dda7ae176e0e9655f7a.tar.bz2 mpackage-8794af8a69b47ac8f66d3dda7ae176e0e9655f7a.tar.xz |
once/get_updates.sh: obtain_remote_file(): do not suppress error messages.
Diffstat (limited to 'once')
-rwxr-xr-x | once/get_updates.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/once/get_updates.sh b/once/get_updates.sh index 2f6485b..e4903b4 100755 --- a/once/get_updates.sh +++ b/once/get_updates.sh @@ -61,9 +61,8 @@ obtain_remote_file() https://* ) wget "${mb_vendor}/${pathname}" \ --output-document="${pathname}" \ - --no-check-certificate \ - 2>/dev/null - ;; + --no-check-certificate + ;; * ) error_msg "Invalid prefix in path argument ${pathname}" |