diff --git a/scripts/unixish-17.sh b/scripts/unixish-17.sh index 30b2a16..ba1f454 100755 --- a/scripts/unixish-17.sh +++ b/scripts/unixish-17.sh @@ -73,7 +73,7 @@ echo '::group::Downloading jq' echo "Src: ${_dl_url}" echo "Dst: ${_dl_path}" -wget -O- "${_dl_url}" > "${_dl_path}" +curl -L "${_dl_url}" -o "${_dl_path}" echo '::endgroup::' diff --git a/scripts/unixish.sh b/scripts/unixish.sh index 25ef9b3..c6edc4b 100755 --- a/scripts/unixish.sh +++ b/scripts/unixish.sh @@ -93,7 +93,7 @@ echo '::group::Downloading jq' echo "Src: ${_dl_url}" echo "Dst: ${_dl_path}" -wget -O- "${_dl_url}" > "${_dl_path}" +curl -L "${_dl_url}" -o "${_dl_path}" echo '::endgroup::'