rvm 0.0.20 → 0.0.21
Sign up to get free protection for your applications and to get access to all the features.
- data/bash/rvm +4 -6
- data/rvm.gemspec +1 -1
- metadata +1 -1
data/bash/rvm
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
rvm_author="Wayne E. Seguin"
|
4
4
|
rvm_author_email="wayneeseguin@gmail.com"
|
5
5
|
rvm_website="http://rvm.beginrescueend.com/"
|
6
|
-
rvm_version="0.0.
|
6
|
+
rvm_version="0.0.21"
|
7
7
|
rvm_updated="2009.08.25"
|
8
8
|
|
9
9
|
#
|
@@ -226,9 +226,7 @@ function rvm-install-source {
|
|
226
226
|
|
227
227
|
function rvm-install-ruby {
|
228
228
|
|
229
|
-
|
230
|
-
ruby_options=RUBYOPT
|
231
|
-
unset RUBYOPT
|
229
|
+
ruby_options=$RUBYOPT ; unset RUBYOPT
|
232
230
|
|
233
231
|
case "$implementation" in
|
234
232
|
|
@@ -328,8 +326,8 @@ function rvm-install-ruby {
|
|
328
326
|
|
329
327
|
esac
|
330
328
|
|
331
|
-
if [ ! -z $ruby_options ] ; then
|
332
|
-
RUBYOPT
|
329
|
+
if [ ! -z "$ruby_options" ] ; then
|
330
|
+
RUBYOPT=$ruby_options ; export RUBYOPT
|
333
331
|
fi
|
334
332
|
|
335
333
|
}
|
data/rvm.gemspec
CHANGED