Skip to content

Commit

Permalink
Merge pull request #4 from mwielgosz-esky/main
Browse files Browse the repository at this point in the history
Use curl instead of wget because it is not bundled in self-hosted run…
  • Loading branch information
dcarbone authored Nov 14, 2024
2 parents 863571a + 9fb4b39 commit 802b4e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/unixish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ echo '::group::Downloading yq'
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 802b4e4

Please sign in to comment.