Skip to content

Commit

Permalink
fixed windows issue in kibana.bat for spaces in path
Browse files Browse the repository at this point in the history
  • Loading branch information
BigFunger committed Jul 28, 2015
1 parent 95eb992 commit e4de84b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/kibana.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set SCRIPT_DIR=%~dp0
for %%I in ("%SCRIPT_DIR%..") do set DIR=%%~dpfI

set NODE=%DIR%\node\node.exe
for /f %%i in ('WHERE node') do (set SYS_NODE=%%i)
for /f "delims=" %%i in ('WHERE node') do set SYS_NODE=%%i

If Not Exist "%NODE%" (
IF Exist "%SYS_NODE%" (
Expand All @@ -22,4 +22,4 @@ TITLE Kibana Server

:finally

ENDLOCAL
ENDLOCAL

0 comments on commit e4de84b

Please sign in to comment.