use windows short names => no issue with space in dir

Fixes #3252
This commit is contained in:
wiibaa 2015-05-18 18:26:24 +02:00 committed by Jordan Sissel
parent 370517bc0e
commit 6cb438d7fc
3 changed files with 9 additions and 3 deletions

View file

@ -2,7 +2,9 @@
SETLOCAL
set SCRIPT_DIR=%~dp0
REM get logstash/bin absolute path: d => drive letter, p => path, s => use short names (no-spaces)
REM as explained on https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/percent.mspx?mfr=true
set SCRIPT_DIR=%~dps0
CALL %SCRIPT_DIR%\setup.bat
:EXEC

View file

@ -2,7 +2,9 @@
SETLOCAL
set SCRIPT_DIR=%~dp0
REM get logstash/bin absolute path: d => drive letter, p => path, s => use short names (no-spaces)
REM as explained on https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/percent.mspx?mfr=true
set SCRIPT_DIR=%~dps0
CALL %SCRIPT_DIR%\setup.bat
:EXEC

View file

@ -2,7 +2,9 @@
SETLOCAL
set SCRIPT_DIR=%~dp0
REM get logstash/bin absolute path: d => drive letter, p => path, s => use short names (no-spaces)
REM as explained on https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/percent.mspx?mfr=true
set SCRIPT_DIR=%~dps0
CALL %SCRIPT_DIR%\setup.bat
:EXEC