scripts/rvm-install in rvm-0.1.34 vs scripts/rvm-install in rvm-0.1.35

- old
+ new

@@ -263,10 +263,10 @@ printf "\nUpgrade of RVM in $rvm_path/ is complete.\n\n" else if [[ "root" != "$(whoami)" ]] ; then printf "\n$(tput setaf 1)You must now finish the install manually:$(tput sgr0)" printf "\n1) Place the folowing line at the end of your shell's loading files(.bashrc or .bash_profile for bash and .zshrc for zsh), after all path/variable settings:" - printf "\n [[ -s \$HOME/scripts/rvm ]] && source \$HOME/scripts/rvm" + printf "\n [[ -s \$HOME/.rvm/scripts/rvm ]] && source \$HOME/.rvm/scripts/rvm" printf "\n2) Ensure that there is no 'return' from inside the .bashrc file. (otherwise rvm will be prevented from working properly)." printf "\n This means that if you see '[ -z "$PS1" ] && return' then you must change this line to:" printf "\n if [[ ! -z "$PS1" ]] ; then" printf "\n ... original content that was below the && return line ..." printf "\n fi # <= be sure to close the if."