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

Last change on this file since 29354 was 29232, checked in by ak19, 10 years ago

Correction to syntax error, and checking locations set as env vars actually exist, error checking

File size: 1.3 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
39rke
40:: It doesn't reach here for some reason
41::popd
42::cd %currentdir%
43::echo ************** HERE I AM
44
45:end
46endlocal
Note: See TracBrowser for help on using the repository browser.