Merge pull request #1 from jakobht/master

There is no wget on archiso
This commit is contained in:
Jonathan Kirszling 2020-08-13 10:06:01 +02:00 committed by GitHub
commit 5bd64d32c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
init
View file

@ -107,7 +107,9 @@ download_package () {
local filename="${1##*/}"
# Download package in tmp
wget "$1" --quiet -P /tmp
cd /tmp
curl -sO "$1"
cd -
# Set out file
package_file="/tmp/$filename"