mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
9e7e37076f
Break-out common functionality between elasticsearch.bat and service.bat Relates #8237 (cherry picked from commit 87095e79534bcef97b2b275322c924bd96b34e3b)
11 lines
232 B
Batchfile
11 lines
232 B
Batchfile
@echo off
|
|
|
|
SETLOCAL
|
|
TITLE Elasticsearch ${project.version}
|
|
|
|
CALL %~dp0elasticsearch.in.bat
|
|
|
|
"%JAVA_HOME%\bin\java" %JAVA_OPTS% %ES_JAVA_OPTS% %ES_PARAMS% %* -cp "%ES_CLASSPATH%" "org.elasticsearch.bootstrap.Elasticsearch"
|
|
|
|
ENDLOCAL
|