Skip to content

Commit

Permalink
Update csf_installer.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiland committed Apr 12, 2021
1 parent 04765ef commit c33057e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csf_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -191,12 +191,12 @@ csf_install() {
if [ "$(which curl 2> /dev/null)" ]; then
download="$(which curl) -s -O"
elif [ "$(which wget 2> /dev/null)" ]; then
download="$(which wget) --no-certificate"
download="$(which wget) --no-check-certificate"
elif [ "$(which fetch 2> /dev/null)" ]; then
download="$(which fetch)"
else
dep "wget"
download="$(which wget) --no-certificate"
download="$(which wget) --no-check-certificate"
e "No HTTP client found, wget added to dependencies" 31
fi

Expand Down

0 comments on commit c33057e

Please sign in to comment.