Skip to content

Commit

Permalink
use curl instead of wget to fix failure on macOS runners (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaidyakhil committed Sep 29, 2023
1 parent ff922c7 commit 1090b8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/unixish-17.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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::'

Expand Down
2 changes: 1 addition & 1 deletion scripts/unixish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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::'

Expand Down

0 comments on commit 1090b8b

Please sign in to comment.