Skip to content

Instantly share code, notes, and snippets.

@rubys
Created January 4, 2010 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rubys/268563 to your computer and use it in GitHub Desktop.
Save rubys/268563 to your computer and use it in GitHub Desktop.
diff --git a/scripts/manage b/scripts/manage
index e528177..a0144b7 100755
--- a/scripts/manage
+++ b/scripts/manage
@@ -515,8 +515,11 @@ __rvm_fetch_ruby() {
# TODO: Check if tag v is valid
rvm_url="${rvm_url:-"$rvm_ruby_repo_url/tags/$(echo $rvm_ruby_tag | sed 's/^t//')"}"
rvm_rev=""
+ elif [[ "$rvm_major_version.$rvm_minor_version" = "8.8" ]] ; then
+ rvm_url="${rvm_url:-"$rvm_ruby_repo_url/branches/ruby_1_${rvm_major_version}"}"
+ rvm_rev="-$rvm_ruby_revision"
else
rvm_url="${rvm_url:-"$rvm_ruby_repo_url/branches/ruby_1_${rvm_major_version}_${rvm_minor_version}"}"
rvm_rev="-$rvm_ruby_revision"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment