Skip to content

Commit 1090b8b

Browse files
authored
use curl instead of wget to fix failure on macOS runners (#8)
1 parent ff922c7 commit 1090b8b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/unixish-17.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ echo '::group::Downloading jq'
7373
echo "Src: ${_dl_url}"
7474
echo "Dst: ${_dl_path}"
7575

76-
wget -O- "${_dl_url}" > "${_dl_path}"
76+
curl -L "${_dl_url}" -o "${_dl_path}"
7777

7878
echo '::endgroup::'
7979

scripts/unixish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ echo '::group::Downloading jq'
9393
echo "Src: ${_dl_url}"
9494
echo "Dst: ${_dl_path}"
9595

96-
wget -O- "${_dl_url}" > "${_dl_path}"
96+
curl -L "${_dl_url}" -o "${_dl_path}"
9797

9898
echo '::endgroup::'
9999

0 commit comments

Comments
 (0)