Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prefsCleaner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ QUICKSTART=false
## download method priority: curl -> wget
DOWNLOAD_METHOD=''
if command -v curl >/dev/null; then
DOWNLOAD_METHOD='curl --max-redirs 3 -so'
DOWNLOAD_METHOD='curl --max-redirs 3 -fso'
elif command -v wget >/dev/null; then
DOWNLOAD_METHOD='wget --max-redirect 3 --quiet -O'
else
Expand Down
2 changes: 1 addition & 1 deletion updater.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ESR=false
# Download method priority: curl -> wget
DOWNLOAD_METHOD=''
if command -v curl >/dev/null; then
DOWNLOAD_METHOD='curl --max-redirs 3 -so'
DOWNLOAD_METHOD='curl --max-redirs 3 -fso'
elif command -v wget >/dev/null; then
DOWNLOAD_METHOD='wget --max-redirect 3 --quiet -O'
else
Expand Down