From cc0fb7b46bd3fc8c4acf17ea7199e6322b92eec5 Mon Sep 17 00:00:00 2001 From: pika Date: Sun, 6 Apr 2025 21:03:30 +0200 Subject: [PATCH] wip --- setup/postinstall.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/postinstall.sh b/setup/postinstall.sh index c9e57e1..21ee1de 100755 --- a/setup/postinstall.sh +++ b/setup/postinstall.sh @@ -54,10 +54,10 @@ command_exists() { # ─────────────────────────────────────< get packager >───────────────────────────────────── # checkPkg() { -for pkg in "apt-get dnf pacman apk zypper"; do +for pkg in apt-get dnf pacman apk zypper; do if command_exists $pkg; then printf "Using ${RED}${pkg}${NC} method.." - pkger="$pkg" + export pkger="$pkg" fi done # }