mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-05 16:24:12 +01:00
15 lines
272 B
Batchfile
Executable File
15 lines
272 B
Batchfile
Executable File
@echo off
|
|
if "%ANT_HOME%"=="" goto noAntHome
|
|
if "%JAVA_HOME%"=="" goto noJavaHome
|
|
call "%ANT_HOME%\bin\ant.bat" exe
|
|
goto end
|
|
|
|
:noAntHome
|
|
echo ANT_HOME environment variable is not set
|
|
goto end
|
|
|
|
:noJavaHome
|
|
echo JAVA_HOME environment variable is not set
|
|
|
|
:end
|