From: Mark Szymanski Date: Sun, 17 Oct 2010 19:36:30 +0000 (-0500) Subject: Fixed bug where everything was bolded after failed command X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=da4b526c596f99df54a5a6328adc84ce082ad972;p=common%2Fbash_it.git Fixed bug where everything was bolded after failed command --- diff --git a/themes/minimal/minimal.theme.bash b/themes/minimal/minimal.theme.bash index a30c629..e70165d 100644 --- a/themes/minimal/minimal.theme.bash +++ b/themes/minimal/minimal.theme.bash @@ -2,7 +2,7 @@ prompt_setter() { if [[ $? -eq 0 ]]; then PS1="\W " else - PS1="${bold_red}\W ${reset_color}" + PS1="${bold_red}\W ${normal}" fi }