From 167fd5424ffe6fb1f836e792eb97a784966aa07f Mon Sep 17 00:00:00 2001 From: Ben O'Bryan <50787535+SolvedSphinx126@users.noreply.github.com> Date: Thu, 30 Dec 2021 22:57:21 -0600 Subject: [PATCH] add support for .zip file compression based on https://github.com/whiskerz007/proxmox_hassos_install/issues/123#issuecomment-985943330 --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 422e5b2..120662f 100644 --- a/install.sh +++ b/install.sh @@ -113,6 +113,7 @@ msg "Extracting disk image..." case $FILE in *"gz") gunzip -f $FILE;; *"xz") xz -d $FILE;; + *"zip") unzip $FILE;; *) die "Unable to handle file extension '${FILE##*.}'.";; esac