Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
@echo off
setlocal
if exist "%JAVA_HOME%" goto gothome
:nohome
for /F %%i in ('dir /b "c:\program files\java\jdk1.6*"') do set JAVA_HOME=c:\program files\java\%%i
if exist "%JAVA_HOME%" goto gothome
echo please set JAVA_HOME pointing to the Java 1.6 JDK installation directory
goto end
:gothome
set classpath=%JAVA_HOME%/lib/tools.jar;contrib/ant/ant.jar
goto build
:build
"%JAVA_HOME%\bin\java" org.apache.tools.ant.Main %1 %2 %3 %4
:end
endlocal