mirror of
https://github.com/elastic/logstash.git
synced 2025-04-20 12:47:23 -04:00
17 lines
260 B
Batchfile
17 lines
260 B
Batchfile
@echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
call "%~dp0setup.bat" || exit /b 1
|
|
if errorlevel 1 (
|
|
if not defined nopauseonerror (
|
|
pause
|
|
)
|
|
exit /B %ERRORLEVEL%
|
|
)
|
|
|
|
%JRUBY_BIN% "%LS_HOME%\lib\pluginmanager\main.rb" %*
|
|
if errorlevel 1 (
|
|
exit /B 1
|
|
)
|
|
|
|
endlocal
|