Whenever I go to a folder with a .rvmrc
file, there is a warning:
Warning! PATH is not properly set up, '/home/me/.rvm/gems/ruby-2.0.0-p247/bin' is not available,
usually this is caused by shell initialization files - check them for 'PATH=...' entries,
to fix run: 'rvm use ruby-2.0.0-p247'.
I did rvm use ruby-2.0.0-p247
, but the warning is still present.
Note: There are no errors, Im able to run my application just fine, but the warning is very annoying. Any ideas?
echo $PATH
? – Andrew Marshall/home/me/.rvm/gems/ruby-2.0.0-p247/bin:/home/me/.rvm/gems/ruby-2.0.0-p247@global/bin:/home/me/.rvm/rubies/ruby-2.0.0-p247/bin:/home/me/.rvm/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
– Santhosh$PATH
, it all becomes clear that heroku'stoolbelt
somehow goes beforeruby
. Change it back solved my problem. Thanks @AndrewMarshall – james sa