From 77a64284bf0bd6b35deef31035cb03880f34571f Mon Sep 17 00:00:00 2001 From: DefKorns Date: Wed, 15 Dec 2021 15:46:48 -0100 Subject: [PATCH] added apt update to prevent erorr installing unzip --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 0ec005e..76cd71a 100644 --- a/install.sh +++ b/install.sh @@ -113,6 +113,7 @@ if [[ $FILE == *.zip ]]; then echo -e "\e[1;33m Checking for unzip command... \e[0m" if ! command -v unzip &> /dev/null; then echo -e "\e[1;33m unzip not found, installing... \e[0m" + apt update apt install unzip -y fi fi