source: release-kits/rk3/bin/rk3.bat@ 20813

Last change on this file since 20813 was 20813, checked in by oranfry, 15 years ago

the rk3.bat file needed to get the whole thing going, plus a fix to the name of the generated executable

File size: 494 bytes
Line 
1@echo off
2
3if "%JAVA_HOME%"=="" (
4 echo Please set JAVA_HOME before running release kit
5 goto end
6)
7if "%RK3_HOME%"=="" (
8 echo Please set RK3_HOME before running release kit
9 goto end
10)
11set ANT_HOME=%RK3_HOME%\core\ant
12
13set CMD=cmd.exe /c %RK3_HOME%\core\ant\bin\ant.bat -f "%RK3_HOME%\ant-scripts\build.xml" -addressing "-Drk3.home=%RK3_HOME%"
14set CMD=%CMD% "-Dbasedir=%CD%"
15set PIPETO="%RK_HOME%\windows\utils\tee.exe" "%CD%\rk3.out"
16
17echo %CMD%
18%CMD%
19::| %PIPETO%
20
21:end
Note: See TracBrowser for help on using the repository browser.