Fixed bug where everything was bolded after failed command

pull/16/head
Mark Szymanski 2010-10-17 14:36:30 -05:00
parent 46ba431f2a
commit da4b526c59
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ prompt_setter() {
if [[ $? -eq 0 ]]; then if [[ $? -eq 0 ]]; then
PS1="\W " PS1="\W "
else else
PS1="${bold_red}\W ${reset_color}" PS1="${bold_red}\W ${normal}"
fi fi
} }