From 2d407f2c71d4a1a235d8056865f233f094436607 Mon Sep 17 00:00:00 2001 From: Benjy <123623302+brrock@users.noreply.github.com> Date: Wed, 14 Aug 2024 15:40:55 +0100 Subject: [PATCH] Update hyprland.sh --- install-scripts/hyprland.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-scripts/hyprland.sh b/install-scripts/hyprland.sh index da5f589..f46fef6 100755 --- a/install-scripts/hyprland.sh +++ b/install-scripts/hyprland.sh @@ -47,7 +47,7 @@ if [[ "$ID" == "debian" || ("$ID_LIKE" == *"debian"* && "$ID_LIKE" != *"ubuntu"* for PKG1 in "${hyprland[@]}"; do install_package "$PKG1" 2>&1 | tee -a "$LOG" if [ $? -ne 0 ]; then - echo -e "\e[1A\e[K${ERROR} - $PKG1 Hyprland installation failed, Please check the installation logs" + echo -e "\e[1A\e[K${ERROR} - $PKG1 installation failed, Please check the installation logs" exit 1 fi done @@ -59,7 +59,7 @@ elif [[ "$ID" == "ubuntu" || "$ID_LIKE" == *"debian ubuntu"* ]]; then for PKG1 in "${hyprland[@]}"; do install_package "$PKG1" 2>&1 | tee -a "$LOG" if [ $? -ne 0 ]; then - echo -e "\e[1A\e[K${ERROR} - $PKG1 Hyprland installation failed, Please check the installation logs" + echo -e "\e[1A\e[K${ERROR} - $PKG1 installation failed, Please check the installation logs" exit 1 fi done