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:03:20 UTC

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

Author: donaldp
Date: Sun Sep 23 10:03:19 2012
New Revision: 1388994

URL: http://svn.apache.org/viewvc?rev=1388994&view=rev
Log:
Force the removal of the Gemfile or face problems when moving from jruby to c ruby ad back again

Modified:
    buildr/trunk/.rvmrc

Modified: buildr/trunk/.rvmrc
URL: http://svn.apache.org/viewvc/buildr/trunk/.rvmrc?rev=1388994&r1=1388993&r2=1388994&view=diff
==============================================================================
--- buildr/trunk/.rvmrc (original)
+++ buildr/trunk/.rvmrc Sun Sep 23 10:03:19 2012
@@ -32,6 +32,7 @@ if [ -f Gemfile ]; then
     echo "Installing bundler..."
     rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec gem install bundler
   fi
+  rm -f Gemfile.lock
   rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec bundle install
   rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec gem cleanup -q
 fi