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
Line 
1@echo off
2setlocal
3
4:: currentdir (C:\Research\Nightly)
5set currentdir=%CD%
6
7:: Need to edit rke-setup.bat and fill it in with local env vars values
8if not exist %currentdir%\tools\expeditee-release-kits\rke-setup.bat (
9echo.
10echo *******************
11echo.
12echo First edit %currentdir%\tools\expeditee-release-kits\rke-setup.bat.in
13echo to generate %currentdir%\tools\expeditee-release-kits\rke-setup.bat
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
22pushd %currentdir%\tools\expeditee-release-kits
23call rke-setup.bat
24if ERRORLEVEL 1 (
25 echo error level 1 or more
26 popd
27 exit /B 1
28)
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
34pushd %currentdir%\snapshots
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
38pushd expeditee
39call rke
40
41:end
42
43cd %currentdir%
44endlocal
45::exit
Note: See TracBrowser for help on using the repository browser.