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:18:50 UTC

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

Author: donaldp
Date: Sun Sep 23 10:18:50 2012
New Revision: 1388999

URL: http://svn.apache.org/viewvc?rev=1388999&view=rev
Log:
Explicitly declare --no-binstubs for bundle install otherwise it will overwrite our bin directory.

Modified:
    buildr/trunk/.rvmrc

Modified: buildr/trunk/.rvmrc
URL: http://svn.apache.org/viewvc/buildr/trunk/.rvmrc?rev=1388999&r1=1388998&r2=1388999&view=diff
==============================================================================
--- buildr/trunk/.rvmrc (original)
+++ buildr/trunk/.rvmrc Sun Sep 23 10:18:50 2012
@@ -33,7 +33,7 @@ if [ -f Gemfile ]; then
     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 bundle install --no-binstubs
   if [ "X$BUILDR_RUBY_VERSION" != "Xjruby-1.6.7" ]; then
     rvm "${BUILDR_RUBY_VERSION}@${BUILDR_GEMSET}" exec gem cleanup -q
   fi