Changeset 18924 for gsdl/trunk/setup.bat


Ignore:
Timestamp:
2009-04-08T17:20:46+12:00 (15 years ago)
Author:
davidb
Message:

setup.bash has some extra tests at the end of the file. The change adds the same tests to setup.bat

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/setup.bat

    r17948 r18924  
    9494:End
    9595
     96if exist ext (
     97    for /D %%e IN ("ext/*") do (
     98        cd ext\%%e
     99        if EXIST setup.bat call setup.bat
     100        cd ..\..
     101    )
     102)
     103
     104if exist apache-httpd (
     105  echo Adding in executable path for apache-httpd
     106  set PATH=%GSDLHOME%\apache-httpd\$GSDLOS\bin;%PATH%
     107)
     108
     109if exist local (
     110  if exist local\setup.bat (
     111    echo.
     112    echo Running local\setup.bat
     113    cd local
     114    call setup.bat
     115    cd ..
     116  )
     117  set PATH=%GSDLHOME%\local\bin;%PATH%
     118)
     119
    96120:: test writability of GSDLHOME
    97121@call "%GSDLHOME%\bin\script\checkwritability.bat"
Note: See TracChangeset for help on using the changeset viewer.