Reputation: 1
Installing heroku-toolbelt/2.32.9 on OSX 10.7.4 fails to setup the PATH correctly for bash.
To fix this I created a .bash_profile
with a correct PATH:
$ cat ~/.bash_profile
export PATH=/usr/local/heroku/bin/:$PATH
Upvotes: 0
Views: 786
Reputation: 21
I did this instead:
$ touch ~/.bash_profile
export PATH=/usr/local/heroku/bin/:$PATH
Upvotes: 2