scripts/rvm-install in rvm-0.1.35 vs scripts/rvm-install in rvm-0.1.36
- old
+ new
@@ -36,11 +36,11 @@
while [[ $# -gt 0 ]] ; do
token="$1" ; shift
case "$token" in
--auto) rvm_auto_flag=1 ;;
- --prefix) prefix_path="$1" ; shift ;;
+ --prefix) rvm_prefix="$1" ; shift ;;
--version) rvm_path="$(pwd)" ; __rvm_version ; unset rvm_path ; exit ;;
--help|*) usage ;;
esac
done
@@ -256,10 +256,11 @@
if [[ "$upgrade_flag" -eq 1 ]] ; then
printf "\n$(tput setaf 6)Upgrade Notes\n"
printf "\n * Gemset separator is '@' and will remain unless any rubies error using it."
printf "\n * If you encounter any issues with a ruby your best bet is to 'rvm remove X ; rvm install X' "
- printf "\n * Do not forget that 'rvm notes' tells you OS dependency packages for installing rubies."
+ printf "\n * 'rvm notes' tells you OS dependency packages for installing rubies."
+ printf "\n * 1.8.7 default patchlevel is p174, override ~/.rvm/config/db in ~/.rvm/config/user"
printf "\n$(tput sgr0)\n"
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)"