moved echo line that corrected for prompt colour

This commit is contained in:
Asif Bacchus 2019-01-04 23:13:06 -07:00
parent 276f13207b
commit 40a2804b48
1 changed files with 2 additions and 2 deletions

View File

@ -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