From e8559353010b6b8d0a1cfefbb5d4b703271132e4 Mon Sep 17 00:00:00 2001 From: solomoncyj Date: Wed, 16 Oct 2024 08:05:17 +0800 Subject: [PATCH] Update linutil-installer.sh --- core/tabs/applications-setup/linutil-installer.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/tabs/applications-setup/linutil-installer.sh b/core/tabs/applications-setup/linutil-installer.sh index 123521a4..4b40c13c 100755 --- a/core/tabs/applications-setup/linutil-installer.sh +++ b/core/tabs/applications-setup/linutil-installer.sh @@ -32,17 +32,17 @@ installLinutil() { printf "%b\n" "setting up repos..." if [$flavor == "Tumbleweed"] then - zypper addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Tumbleweed/home:solomoncyj.repo + "$ESCALATION_TOOL" "$PACKAGER" addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Tumbleweed/home:solomoncyj.repo fi if [$flavor == "Slowroll"] then - zypper addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Slowroll/home:solomoncyj.repo + "$ESCALATION_TOOL" "$PACKAGER" addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Slowroll/home:solomoncyj.repo fi printf "%b\n" "refreshing and installing" - zypper refresh - zypper install linutil + "$ESCALATION_TOOL" "$PACKAGER" refresh + "$ESCALATION_TOOL" "$PACKAGER" install linutil printf "%b\n" "${GREEN}Installed successfully.${RC}" ;; *)