* bootstrap.conf: Replace \e with portable \033

This commit is contained in:
Avinash Sonawane
2024-01-12 07:34:49 +05:30
committed by Tim Rühsen
parent 3f5a7cb7ed
commit e9efc69c7a

View File

@ -169,9 +169,9 @@ clone_wiki() {
wiki_status=$?
if [ $wiki_status -eq 0 ]
then
echo "\e[1;32mWiki pages cloned\e[0m"
echo "\033[1;32mWiki pages cloned\033[0m"
else
echo "\e[1;31mUnable to clone wiki but no issues you can continue\e[0m"
echo "\033[1;31mUnable to clone wiki but no issues you can continue\033[0m"
fi
}