Changeset 5023


Ignore:
Timestamp:
2003-07-24T17:44:46+12:00 (21 years ago)
Author:
mdewsnip
Message:

The (hopefully) last piece of the puzzle: using the local library if it exists.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/gli.bat

    r5022 r5023  
    173173:: -Xloggc:<file>   Write garbage collection log
    174174
    175 "%JAVAPATH%\java" -cp classes/;GLI.jar;lib/apache.jar;lib/calpa.jar;lib/jp.jar;lib/polloxml.jar;lib/qfslib.jar;lib/skinlf.jar;lib/nanoxml.jar org.greenstone.gatherer.Gatherer -gsdl %GSDLHOME% -perl %PERLPATH% %1 %2 %3 %4 %5 %6 %7 %8 %9
     175if exist "%GSDLHOME%\server.exe" goto localLib
     176    "%JAVAPATH%\java" -cp classes/;GLI.jar;lib/apache.jar;lib/calpa.jar;lib/jp.jar;lib/polloxml.jar;lib/qfslib.jar;lib/skinlf.jar;lib/nanoxml.jar org.greenstone.gatherer.Gatherer -gsdl %GSDLHOME% -perl %PERLPATH% %1 %2 %3 %4 %5 %6 %7 %8 %9
    176177
    177 echo Done!
     178    echo Done!
     179    goto exit
     180
     181:localLib
     182    "%JAVAPATH%\java" -cp classes/;GLI.jar;lib/apache.jar;lib/calpa.jar;lib/jp.jar;lib/polloxml.jar;lib/qfslib.jar;lib/skinlf.jar;lib/nanoxml.jar org.greenstone.gatherer.Gatherer -gsdl %GSDLHOME% -perl %PERLPATH% -library %GSDLHOME%\server.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
     183
     184    echo Done!
    178185
    179186:exit
Note: See TracChangeset for help on using the changeset viewer.