source: other-projects/expeditee-release-kits/create-expeditee.bat@ 29368

Last change on this file since 29368 was 29368, checked in by Jeremy Symon, 10 years ago

calling rke.bat instead of just running it allowed create-expeditee.bat to continue and do cleanup after it terminated

File size: 1.2 KB
RevLine 
[29230]1@echo off
[29232]2setlocal
[29230]3
[29232]4:: currentdir (C:\Research\Nightly)
5set currentdir=%CD%
6
[29230]7:: Need to edit rke-setup.bat and fill it in with local env vars values
[29232]8if not exist %currentdir%\tools\expeditee-release-kits\rke-setup.bat (
[29230]9echo.
10echo *******************
11echo.
[29232]12echo First edit %currentdir%\tools\expeditee-release-kits\rke-setup.bat.in
13echo to generate %currentdir%\tools\expeditee-release-kits\rke-setup.bat
[29230]14echo.
15echo *******************
16echo.
17goto end
18)
19
20:: rke-setup.bat uses local paths, so cd into expeditee-release-kits first
21:: then call rke-setup.bat to source the environment vars it sets
[29232]22pushd %currentdir%\tools\expeditee-release-kits
[29230]23call rke-setup.bat
[29232]24if ERRORLEVEL 1 (
25 echo error level 1 or more
26 popd
27 exit /B 1
28)
[29230]29popd
30
31
32:: Make sure the expeditee folder and its rke-build.properties file exist
33:: Then run the 'rke' command from snapshots\expeditee
[29232]34pushd %currentdir%\snapshots
[29230]35::http://www.robvanderwoude.com/battech_ifexistfolder.php
36if not exist expeditee\ mkdir expeditee
37if not exist expeditee\rke-build.properties copy C:\Research\Nightly\tools\expeditee-release-kits\rke-build.properties.in expeditee\rke-build.properties
[29232]38pushd expeditee
[29368]39call rke
[29230]40
41:end
[29368]42
43cd %currentdir%
[29232]44endlocal
[29368]45::exit
Note: See TracBrowser for help on using the repository browser.