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/10/17 23:17:59 UTC

svn commit: r1399439 - /buildr/trunk/ci.bat

Author: donaldp
Date: Wed Oct 17 21:17:58 2012
New Revision: 1399439

URL: http://svn.apache.org/viewvc?rev=1399439&view=rev
Log:
Use CALL to invoke other bat scripts

Modified:
    buildr/trunk/ci.bat

Modified: buildr/trunk/ci.bat
URL: http://svn.apache.org/viewvc/buildr/trunk/ci.bat?rev=1399439&r1=1399438&r2=1399439&view=diff
==============================================================================
--- buildr/trunk/ci.bat (original)
+++ buildr/trunk/ci.bat Wed Oct 17 21:17:58 2012
@@ -14,8 +14,8 @@ IF "X%BUILD_JVM%" EQ "X1.7" SET JAVA_HOM
 SET GEM_HOME=.gems
 SET PATH=%JAVA_HOME%\bin;%RUBY_HOME%\bin;%GEM_HOME%\bin;%PATH%
 
-gem install bundler
-bundle install --path vendor/bundle
+CALL gem install bundler
+CALL bundle install
 
 SET BUILD_RAKE_TASK=ci
-rem rake clobber %BUILD_RAKE_TASK% --trace
+CALL rake clobber %BUILD_RAKE_TASK% --trace