Skip to content

Commit

Permalink
Don't use wget in elemental-iso-add-registration
Browse files Browse the repository at this point in the history
The rationale behind this change is that wget is not shipped with SLE
Micro while curl is.
  • Loading branch information
cbosdo committed Jan 30, 2023
1 parent 6723de6 commit 6c4e48f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/elemental-iso-add-registration
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ iso_repack() {

case ${ISO_URL} in
http*)
wget -O "${TEMPDIR}/iso/${ISO_FILE}" "${ISO_URL}"
curl -Lo "${TEMPDIR}/iso/${ISO_FILE}" "${ISO_URL}"
;;
*)
# Assume it is a local path
Expand Down

0 comments on commit 6c4e48f

Please sign in to comment.