summaryrefslogtreecommitdiff
path: root/zirless.sh
diff options
context:
space:
mode:
Diffstat (limited to 'zirless.sh')
-rwxr-xr-xzirless.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/zirless.sh b/zirless.sh
index 2eaa2b5..b1d4e88 100755
--- a/zirless.sh
+++ b/zirless.sh
@@ -173,7 +173,11 @@ maininstall() { # Installs all needed programs from main repo.
serviceinstall() { # Installs service files in addition, for Artix packages
dialog --title "ZIRLESS Installation" --infobox "Installing \`$1\` ($n of $total). $1 $2" 5 70
- installpkg "$1" "$1-$init"
+ if [ "$DISTRO" = "ARTIX" ]; then
+ installpkg "$1" "$1-$init"
+ else
+ installpkg "$1"
+ fi
}
gitmakeinstall() {