From 09fb19d8a309757c285265660060f9eccef2fe00 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 27 Dec 2024 20:03:15 +0900 Subject: [PATCH] small tweak on Global Functions --- install-scripts/Global_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-scripts/Global_functions.sh b/install-scripts/Global_functions.sh index 8e25bd3..0cb1639 100755 --- a/install-scripts/Global_functions.sh +++ b/install-scripts/Global_functions.sh @@ -31,7 +31,7 @@ install_package_pacman() { sudo pacman -S --noconfirm "$1" 2>&1 | tee -a "$LOG" # Making sure package is installed if pacman -Q "$1" &>/dev/null ; then - echo -e "${OK} $1 was installed." + echo -e "${OK} Package ${!YELLOW}$1${RESET} has been successfully installed!" else # Something is missing, exiting to review log echo -e "${ERROR} $1 failed to install. Please check the $LOG. You may need to install manually."