1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

Fix bug 142952 windows daemon.bat calls setup.bat

This commit is contained in:
Martin Oberhuber 2006-09-21 21:13:24 +00:00
parent 1ea0e820e7
commit 079bc09b83

View file

@ -1,2 +1,12 @@
@ECHO OFF
IF NOT "%A_PLUGIN_PATH%"=="" GOTO DoneSetup
IF EXIST setup.bat GOTO HaveSetup
ECHO.
ECHO Please run setup.bat before running daemon.bat
PAUSE
GOTO Done
:HaveSetup
CALL setup.bat
:DoneSetup
java -DA_PLUGIN_PATH=%A_PLUGIN_PATH% org.eclipse.dstore.core.server.ServerLauncher
:Done