Fix GitHub download

This commit is contained in:
Heath Mitchell 2023-06-27 19:50:12 +02:00
parent 7e57c3173b
commit 6f7076ebbc
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ if [[ -f "$ARCHIVE" ]]; then
else
echo "$TAG Downloading $URL..."
if command -v curl >/dev/null 2>&1; then
curl $URL -o $ARCHIVE
curl -L $URL -o $ARCHIVE
elif command -v wget >/dev/null 2>&1; then
wget -q --show-progress $URL -O $ARCHIVE
else