From 4f0f039ef87bf09d6e08f7452151b1cac9737e00 Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Sat, 28 May 2022 17:13:24 +0200 Subject: [PATCH] Fixing echos. --- easy-arch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easy-arch.sh b/easy-arch.sh index 85a30ca..39622e6 100755 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -13,11 +13,11 @@ RESET='\e[0m' # Pretty print (function). info_print () { - echo -ne "${BOLD}${BYELLOW}[ ${BGREEN}•${BYELLOW} ] $1${RESET}" + echo -e "${BOLD}${BYELLOW}[ ${BGREEN}•${BYELLOW} ] $1${RESET}" } # Alert user of bad input (function). error_print () { - echo -ne "${BOLD}${BRED}[ ${BBLUE}•${BRED} ] $1${RESET}" + echo -e "${BOLD}${BRED}[ ${BBLUE}•${BRED} ] $1${RESET}" } # Virtualization check (function).