From: AJ ONeal Date: Sun, 2 May 2021 18:39:57 +0000 (+0000) Subject: bugfix: invert download check X-Git-Url: https://git.josue.xyz/?p=webi-installers%2F.git;a=commitdiff_plain;h=b8963e2eecc7fc2018a62f3b34ae9bc30d8fc67d bugfix: invert download check --- diff --git a/_webi/template.sh b/_webi/template.sh index 2fff936..adbc3e9 100644 --- a/_webi/template.sh +++ b/_webi/template.sh @@ -170,7 +170,7 @@ function __bootstrap_webi() { if [[ $- == *i* ]]; then my_show_progress="--show-progress" fi - if wget -q $my_show_progress --user-agent="wget $WEBI_UA" -c "$my_url" -O "$my_dl.part"; then + if ! wget -q $my_show_progress --user-agent="wget $WEBI_UA" -c "$my_url" -O "$my_dl.part"; then echo >&2 "failed to download from $WEBI_PKG_URL" exit 1 fi