From 6c4e48f9dbd76699e02abc3593c0c69fdf31e861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bosdonnat?= Date: Mon, 30 Jan 2023 15:23:57 +0100 Subject: [PATCH] Don't use wget in elemental-iso-add-registration The rationale behind this change is that wget is not shipped with SLE Micro while curl is. --- .github/elemental-iso-add-registration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/elemental-iso-add-registration b/.github/elemental-iso-add-registration index 2c90894eb..fc5d8ea0a 100755 --- a/.github/elemental-iso-add-registration +++ b/.github/elemental-iso-add-registration @@ -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