diff --git a/install-scripts/Global_functions.sh b/install-scripts/Global_functions.sh index b1b1831..5605e4e 100755 --- a/install-scripts/Global_functions.sh +++ b/install-scripts/Global_functions.sh @@ -106,7 +106,7 @@ uninstall_package() { if ! pacman -Qi "$pkg" &>/dev/null; then echo -e "\e[1A\e[K${OK} $pkg was uninstalled." else - echo -e "\e[1A\e[K${ERROR} $pkg failed to uninstall. Please check the log." + echo -e "\e[1A\e[K${ERROR} $pkg failed to uninstall. No actions required." return 1 fi else diff --git a/install.sh b/install.sh index 412968d..1ce703d 100755 --- a/install.sh +++ b/install.sh @@ -68,7 +68,7 @@ read -p "${SKY_BLUE}Would you like to proceed? (y/n): ${RESET}" proceed if [ "$proceed" != "y" ]; then printf "\n%.0s" {1..2} - echo "${INFO} Installation aborted. No changes done! Goodbye!" + echo "${INFO} Installation aborted. ${SKY_BLUE}No changes in your system.${RESET} ${YELLOW}Goodbye!${RESET}" printf "\n%.0s" {1..2} exit 1 fi