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:
parent
1ea0e820e7
commit
079bc09b83
1 changed files with 11 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue