Created
January 4, 2010 15:05
-
-
Save rubys/268563 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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