From 40a2804b482bcc0b60377e64682a6f0a8512700b Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Fri, 4 Jan 2019 23:13:06 -0700 Subject: [PATCH] moved echo line that corrected for prompt colour --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 6252dd9..6af31fe 100644 --- a/setup.sh +++ b/setup.sh @@ -132,7 +132,6 @@ while true; do echo -e "\n${warn}The file you specified doesn't exist" while true; do read -p "Do you want to use this path anyways? " yn - echo -e "${norm}" case $yn in [Yy]*) CertPath="${inputCertPath}" @@ -149,6 +148,7 @@ while true; do break fi fi + echo -e "${norm}" ;; esac done @@ -173,7 +173,6 @@ while true; do echo -e "\n${warn}The file you specified doesn't exist" while true; do read -p "Do you want to use this path anyways? " yn - echo -e "${norm}" case $yn in [Yy]*) KeyPath="${inputKeyPath}" @@ -190,6 +189,7 @@ while true; do break fi fi + echo -e "${norm}" ;; esac done