mirror of
https://github.com/elastic/kibana.git
synced 2025-04-20 07:48:52 -04:00
* Bump node to 10.15.0 * newline * -1 newline * bump max header size to 64kb * fix quotes * s * space * Bump node to 10.15.1 * fix flag arg
21 lines
343 B
Batchfile
Executable file
21 lines
343 B
Batchfile
Executable file
@echo off
|
|
|
|
SETLOCAL
|
|
|
|
set SCRIPT_DIR=%~dp0
|
|
for %%I in ("%SCRIPT_DIR%..") do set DIR=%%~dpfI
|
|
|
|
set NODE=%DIR%\node\node.exe
|
|
|
|
set NODE_ENV="production"
|
|
|
|
If Not Exist "%NODE%" (
|
|
Echo unable to find usable node.js executable.
|
|
Exit /B 1
|
|
)
|
|
|
|
"%NODE%" --no-warnings --max-http-header-size=65536 %NODE_OPTIONS% "%DIR%\src\cli" %*
|
|
|
|
:finally
|
|
|
|
ENDLOCAL
|