From 5999c1c8e6e569c0a265bda1e55531ffddbada87 Mon Sep 17 00:00:00 2001 From: Elara Date: Mon, 25 Dec 2023 02:27:11 +0000 Subject: [PATCH] Disable gpg checks for zypper in install script --- scripts/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install.sh b/scripts/install.sh index 79ff85d..acc1829 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -42,6 +42,7 @@ installPkg() { case $1 in pacman) $rootCmd pacman --noconfirm -U ${@:2} ;; apk) $rootCmd apk add --allow-untrusted ${@:2} ;; + zypper) $rootCmd zypper --no-gpg-checks install ${@:2} ;; *) $rootCmd $1 install -y ${@:2} ;; esac }