source: main/trunk/greenstone3/gs3-setup-cli.bat

Last change on this file was 37721, checked in by davidb, 12 months ago

Matching change introduced in .sh version; .bat not currently tested

  • Property svn:executable set to *
File size: 484 bytes
Line 
1@echo off
2
3if exist gs3-setup.bat goto start
4 echo This script must be run from within the Greenstone 3 home directory
5 goto done
6
7:start
8
9set GSDL3_EXTCLI_HOME=%CD%\ext-cli
10echo Set environment variable GSDL3_EXTCLI_HOME:
11echo %GSDL3_EXTCLI_HOME%
12
13:: ---- Check for any setup files in ext or local folders ----
14if exist ext-cli (
15 for /D %%e IN ("ext-cli/*") do (
16 cd ext-cli\%%e
17 if EXIST SETUP.bat (
18 call SETUP.bat
19 )
20
21 cd ..\..
22 )
23)
24
25
26:done
27
28
29
30
31
Note: See TracBrowser for help on using the repository browser.