This is an automated email from the ASF dual-hosted git repository.
jaikiran 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 d80b4a7 Fix bootstrap.bat on Windows
d80b4a7 is described below
commit d80b4a75ade197214f3f0c973e96cb63345d1e57
Author: Jaikiran Pai <[email protected]>
AuthorDate: Sun Aug 25 16:34:35 2019 +0530
Fix bootstrap.bat on Windows
---
bootstrap.bat | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bootstrap.bat b/bootstrap.bat
index ab5c1c9..6cec029 100755
--- a/bootstrap.bat
+++ b/bootstrap.bat
@@ -70,12 +70,12 @@ DEL %CLASSDIR%\JavacVersionCheck.java
%CLASSDIR%\JavacVersionCheck.class >nul 2>
echo.
IF %JAVAC_RELEASE_VERSION% == "" (
echo ... Compiling Ant Classes
+ "%JAVAC%" %BOOTJAVAC_OPTS% -d %CLASSDIR% %TOOLS%\bzip2\*.java
%TOOLS%\tar\*.java %TOOLS%\zip\*.java %TOOLS%\ant\*.java
%TOOLS%\ant\types\*.java %TOOLS%\ant\taskdefs\*.java
%TOOLS%\ant\util\regexp\RegexpMatcher.java
%TOOLS%\ant\util\regexp\RegexpMatcherFactory.java
%TOOLS%\ant\taskdefs\condition\*.java %TOOLS%\ant\taskdefs\compilers\*.java
%TOOLS%\ant\types\resources\*.java %TOOLS%\ant\property\*.java
) ELSE (
echo ... Compiling Ant Classes with %JAVAC_RELEASE_VERSION%
+ "%JAVAC%" %BOOTJAVAC_OPTS% -d %CLASSDIR% %JAVAC_RELEASE_VERSION%
%TOOLS%\bzip2\*.java %TOOLS%\tar\*.java %TOOLS%\zip\*.java %TOOLS%\ant\*.java
%TOOLS%\ant\types\*.java %TOOLS%\ant\taskdefs\*.java
%TOOLS%\ant\util\regexp\RegexpMatcher.java
%TOOLS%\ant\util\regexp\RegexpMatcherFactory.java
%TOOLS%\ant\taskdefs\condition\*.java %TOOLS%\ant\taskdefs\compilers\*.java
%TOOLS%\ant\types\resources\*.java %TOOLS%\ant\property\*.java
)
-"%JAVAC%" %BOOTJAVAC_OPTS% -d %CLASSDIR% %JAVAC_RELEASE_VERSION%
%TOOLS%\bzip2\*.java %TOOLS%\tar\*.java %TOOLS%\zip\*.java %TOOLS%\ant\*.java
%TOOLS%\ant\types\*.java %TOOLS%\ant\taskdefs\*.java
%TOOLS%\ant\util\regexp\RegexpMatcher.java
%TOOLS%\ant\util\regexp\RegexpMatcherFactory.java
%TOOLS%\ant\taskdefs\condition\*.java %TOOLS%\ant\taskdefs\compilers\*.java
%TOOLS%\ant\types\resources\*.java %TOOLS%\ant\property\*.java
-
if ERRORLEVEL 1 goto mainend
echo.