You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jk...@apache.org on 2019/08/25 10:28:37 UTC

[ant] branch master updated: Removing quotes that break builds on 1.8

This is an automated email from the ASF dual-hosted git repository.

jkf pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git


The following commit(s) were added to refs/heads/master by this push:
     new a45a1f3  Removing quotes that break builds on 1.8
a45a1f3 is described below

commit a45a1f35ab0e87a295b950f5888bb2ac20c0b0e8
Author: jmkf <jm...@famkruithof.net>
AuthorDate: Sun Aug 25 12:28:33 2019 +0200

    Removing quotes that break builds on 1.8
---
 bootstrap.bat | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bootstrap.bat b/bootstrap.bat
index 3d7f396..ab5c1c9 100755
--- a/bootstrap.bat
+++ b/bootstrap.bat
@@ -68,7 +68,7 @@ echo "public class JavacVersionCheck {}" > %CLASSDIR%\JavacVersionCheck.java
 IF %ERRORLEVEL% EQU 0 SET JAVAC_RELEASE_VERSION="--release 8"
 DEL %CLASSDIR%\JavacVersionCheck.java %CLASSDIR%\JavacVersionCheck.class >nul 2>&1
 echo.
-IF "%JAVAC_RELEASE_VERSION%" == "" (
+IF %JAVAC_RELEASE_VERSION% == "" (
   echo ... Compiling Ant Classes
 ) ELSE (
   echo ... Compiling Ant Classes with %JAVAC_RELEASE_VERSION%