Skip to content

Commit

Permalink
Bugfix: no more "pretty slash trails"
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Sep 24, 2010
1 parent d800a03 commit 6de324f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/gemsets
Expand Up @@ -776,8 +776,8 @@ gemset_initial() {
"$rvm_path/scripts/log" "info" \
"Importing initial gemsets for $(__rvm_environment_identifier)."

if [[ ! -d "$rvm_gemsets_path/${rvm_ruby_string//-/\/}" ]] ; then
mkdir -p "$rvm_gemsets_path/${rvm_ruby_string//-/\/}" 2>/dev/null
if [[ ! -d "$rvm_gemsets_path/${rvm_ruby_string//-//}" ]] ; then
mkdir -p "$rvm_gemsets_path/${rvm_ruby_string//-//}" 2>/dev/null
fi

paths=($(__rvm_ruby_string_paths_under "$rvm_gemsets_path"))
Expand Down

0 comments on commit 6de324f

Please sign in to comment.