From 1090b8bd111c736fbfe29b686e64f4bec7b5caa6 Mon Sep 17 00:00:00 2001 From: akhil Date: Fri, 29 Sep 2023 22:34:15 +0530 Subject: [PATCH] use curl instead of wget to fix failure on macOS runners (#8) --- scripts/unixish-17.sh | 2 +- scripts/unixish.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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::'