You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2012/09/23 12:06:31 UTC

svn commit: r1388995 - /buildr/trunk/.rvmrc

Author: donaldp
Date: Sun Sep 23 10:06:31 2012
New Revision: 1388995

URL: http://svn.apache.org/viewvc?rev=1388995&view=rev
Log:
Stop attempting to cleanup gems under jruby as it breaks with some of the magic builtin gems (rake, ssl)

Modified:
    buildr/trunk/.rvmrc

Modified: buildr/trunk/.rvmrc
URL: http://svn.apache.org/viewvc/buildr/trunk/.rvmrc?rev=1388995&r1=1388994&r2=1388995&view=diff
==============================================================================
--- buildr/trunk/.rvmrc (original)
+++ buildr/trunk/.rvmrc Sun Sep 23 10:06:31 2012
@@ -34,7 +34,9 @@ if [ -f Gemfile ]; then
   fi
   rm -f Gemfile.lock
   rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec bundle install
-  rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec gem cleanup -q
+  if [ "X$BUILDR_RUBY_VERSION" != "Xjruby-1.6.7" ]; then
+    rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec gem cleanup -q
+  fi
 fi
 
 if [ ! -z "$PS1" ]; then