Skip to content

Commit

Permalink
Bugfix: s/rvm_dir/rvm_path/g
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Dec 27, 2009
1 parent e1adc95 commit 6419f7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/gems
Expand Up @@ -22,7 +22,7 @@ __rvm_gems_dir() {
}

__rvm_gems_list() {
if [[ $rvm_dir =~ rvm ]] ; then
if [[ $rvm_path =~ rvm ]] ; then
for gemdir in "${rvm_gem_path}"/${rvm_ruby_string}%* ; do
echo "$gemdir" | awk -F'%' '{print $2}'
done
Expand Down
2 changes: 1 addition & 1 deletion test/setup
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

if [[ -z "$test_setup_flag" ]] ; then
rvm_dir=~/.rvm-test ; export rvm_dir
rvm_path=~/.rvm-test ; export rvm_path
./install
source scripts/rvm
rubies=$(\ls test/rubies/)
Expand Down

0 comments on commit 6419f7b

Please sign in to comment.