From d549b661d09a0b387d46a50b4f41c8433b1d9de9 Mon Sep 17 00:00:00 2001 From: "Wayne E. Seguin" Date: Wed, 2 Jun 2010 19:38:32 -0400 Subject: [PATCH] Removed install_source_path for gemsets --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index d30594a855..b4b2ecd50f 100755 --- a/scripts/install +++ b/scripts/install @@ -171,8 +171,8 @@ fi # 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