Skip to content

Commit

Permalink
Merge pull request #5 from BigFunger/apps/home
Browse files Browse the repository at this point in the history
fixed windows issue in kibana.bat for spaces in path
  • Loading branch information
spalger committed Jul 28, 2015
2 parents 0e6e02e + e4de84b commit e2d6053
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 e2d6053

Please sign in to comment.