diff options
author | Robin Opletal <me@robinopletal.com> | 2021-01-14 18:11:56 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2021-02-15 12:11:29 +0000 |
commit | e2965a2d5d90297741fd37a1090fe49bc411c65b (patch) | |
tree | 530908aa97d30118f391ea0195821caaca8a6917 /setup-bootable.in | |
parent | 59cea34505cfc8563e1164d1ba81cb5ea2f3369f (diff) | |
download | alpine-conf-e2965a2d5d90297741fd37a1090fe49bc411c65b.zip |
Add support for https in setup-bootable
Diffstat (limited to 'setup-bootable.in')
-rw-r--r-- | setup-bootable.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-bootable.in b/setup-bootable.in index 54b4c64..b9a9f3d 100644 --- a/setup-bootable.in +++ b/setup-bootable.in @@ -300,7 +300,7 @@ if [ -f "$src"/.alpine-release ]; then else vecho "Extracting $src to $destdir/.new/" case "$src" in - http://*|ftp://*) + https://*|http://*|ftp://*) ${WGET:-wget} -O - "$src" | (cd "$destdir"/.new; exec ${UNISO:-uniso}) \ || die "Failed to download or extract $src" echo "" |