scripts/rvm-install in rvm-0.1.37 vs scripts/rvm-install in rvm-0.1.38
- old
+ new
@@ -169,12 +169,12 @@
#
# Initial Interpreter Gemsets.
#
spinner
mkdir -p "$rvm_gemsets_path"
-for gemset_file in $(cd $install_source_path/gemsets ; find . -iname '*.gems' | sed 's/\.\///') ; do
- source_path="$install_source_path/gemsets"
+for gemset_file in $(cd gemsets ; find . -iname '*.gems' | sed 's/\.\///') ; do
+ source_path="$(pwd)/gemsets"
destination="$rvm_gemsets_path/$gemset_file"
destination_path="$(dirname "$destination")"
if [[ ! -s "$destination" ]] ; then
mkdir -p "$destination_path"
cp "$source_path/$gemset_file" "$destination"
@@ -269,13 +269,13 @@
printf "\n w$(tput setaf 2)⦿‿⦿$(tput sgr0)t!"
printf "\n ~ Wayne\n"
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 * 'rvm notes' tells you OS dependency packages for installing rubies."
+ printf "\n * If you encounter any issues with a ruby your best bet is to 'rvm remove X ; rvm install X' "
printf "\n * 1.8.7 default patchlevel is p174, override ~/.rvm/config/db in ~/.rvm/config/user"
+ printf "\n * Gemset separator is '@' and will remain unless any rubies error using it."
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)"