From 7078ff8ac858be58edad82509d22587bbce9808d Mon Sep 17 00:00:00 2001 From: Lucas Freitas <4260591+lucasff@users.noreply.github.com> Date: Sun, 19 Dec 2021 21:09:29 +0100 Subject: [PATCH] Update install.sh Adds support to *.zip files --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index 422e5b2..2926099 100644 --- a/install.sh +++ b/install.sh @@ -113,6 +113,8 @@ 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