Skip to content

Commit

Permalink
Merge pull request #319 from kbrock/master
Browse files Browse the repository at this point in the history
Fix for the wrapper command
  • Loading branch information
wayneeseguin committed Jul 2, 2011
2 parents c8ea6a7 + e899189 commit 7c9fc7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/wrapper
Expand Up @@ -89,8 +89,8 @@ symlink_binary()
# we then symlink it into place.
if wrap_binary && [[ -f "$file_name" ]]
then
rm -f "$rvm_bin_path/${prefix}_${binary_name}"
ln -fs "$file_name" "$rvm_bin_path/${prefix}_${binary_name}"
rm -f "$rvm_bin_path/${prefix}_${binary_name##*\/}"
ln -fs "$file_name" "$rvm_bin_path/${prefix}_${binary_name##*\/}"
fi
}

Expand Down

0 comments on commit 7c9fc7b

Please sign in to comment.