From 15e1b40767f0a3a706db1eeb8ff3016d9783accb Mon Sep 17 00:00:00 2001 From: jaap-stack <11439979+jaap-stack@users.noreply.github.com> Date: Tue, 17 Aug 2021 21:16:31 +0200 Subject: [PATCH] Update install.sh Solving the issue of not being able to handle the zip file https://github.com/whiskerz007/proxmox_hassos_install/issues/113 --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 422e5b2..d49743d 100644 --- a/install.sh +++ b/install.sh @@ -112,6 +112,7 @@ FILE=$(basename $URL) msg "Extracting disk image..." case $FILE in *"gz") gunzip -f $FILE;; + *"zip") gunzip -S .zip $FILE;; *"xz") xz -d $FILE;; *) die "Unable to handle file extension '${FILE##*.}'.";; esac