RVM search string not found for Bash, repeat this command with '--auto-dotfiles' flag to fix it

Removed rvm

. When I reinstall I get this:

    RVM sourcing line not found for Bash, rerun this command with '--auto-dotfiles' flag to fix it.

      

Given what I was using [~]$ \curl -sSL https://get.rvm.io | bash -s stable --ruby

, it wants me to run this command with a flag dotfiles

?

+3


source to share


1 answer


The line "repeat this command" means restarting rvm reinstall ruby-2.3.3 with the added flag. This worked for me:

[~]$ \curl -sSL https://get.rvm.io | bash -s stable --ruby --auto-dotfiles

      



... The idea is to just overlay --auto-dotfiles with the last command you ran.

0


source







All Articles