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/01 01:51:54 UTC

svn commit: r1392135 - /buildr/trunk/ci.sh

Author: donaldp
Date: Sun Sep 30 23:51:54 2012
New Revision: 1392135

URL: http://svn.apache.org/viewvc?rev=1392135&view=rev
Log:
Fix up the shell file syntax

Modified:
    buildr/trunk/ci.sh

Modified: buildr/trunk/ci.sh
URL: http://svn.apache.org/viewvc/buildr/trunk/ci.sh?rev=1392135&r1=1392134&r2=1392135&view=diff
==============================================================================
--- buildr/trunk/ci.sh (original)
+++ buildr/trunk/ci.sh Sun Sep 30 23:51:54 2012
@@ -35,12 +35,12 @@ fi
 
 # Select the JVM and default to 1.7 if not specified
 if [ "X$BUILD_JVM" == "X1.5" ]; then
-  export JAVA_HOME=/home/hudson/tools/java/latest1.5-64;
+  export JAVA_HOME=/home/hudson/tools/java/latest1.5-64
 elif [ "X$BUILD_JVM" == "X1.6" ]; then
-  export JAVA_HOME=/home/hudson/tools/java/latest1.6-64 ;
+  export JAVA_HOME=/home/hudson/tools/java/latest1.6-64
 else
-  export JAVA_HOME=/home/hudson/tools/java/latest1.7-64 ;
-end
+  export JAVA_HOME=/home/hudson/tools/java/latest1.7-64
+fi
 
 # Select the Ruby virtual machine and default to 1.9.3 if not specified
 if [ "X$BUILD_RVM" == "X1.9.2" ]; then
@@ -51,7 +51,7 @@ elif [ "X$BUILD_JVM" == "Xjruby" ]; then
   export BUILDR_RUBY_VERSION=jruby-1.6.7
 else
   export BUILDR_RUBY_VERSION=ruby-1.9.3-p0
-end
+fi
 
 export BUILDR_GEMSET=$JOB_NAME