mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 01:40:17 +00:00
bugfix: invert download check
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user