From 4dc0d395f7e862adb32373c7422aa8bd7159550d Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Mon, 2 Sep 2024 23:49:41 +0330 Subject: [PATCH] Added Upgrade --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 5209cc9..03c1bf1 100644 --- a/install.sh +++ b/install.sh @@ -11,7 +11,7 @@ REQUIRED_PACKAGES="jq qrencode curl pwgen uuid-runtime python3 python3-pip pytho MISSING_PACKAGES=$(dpkg-query -W -f='${Package}\n' $REQUIRED_PACKAGES 2>&1 | grep -v "ok installed") if [ -n "$MISSING_PACKAGES" ]; then echo "The following packages are missing and will be installed: $MISSING_PACKAGES" - apt update + apt update && apt upgrade -y apt install -y $MISSING_PACKAGES fi