Reputation: 674
export PS1="\e[48;5;88m\e[38;5;15m\e[K\e[1m\t \e[38;5;82m\u\e[38;5;15m@\e[38;5;82m\h\e[38;5;15m on: \W [\e[38;5;82m\$\e[38;5;15m]\e[0m\n"
With this variable set in .bashrc, exerytime I type exec bundle rake db:migrate
.
I don't know what is wrong with the colors commands.
I use GNOME Terminal 3.18.3.
Upvotes: 0
Views: 318
Reputation: 34924
Your command exec bundle...
should be bundle exec...
. Running the exec
command replaces your shell process with the proceeding command.
Upvotes: 1