Revert "use windows short names => no issue with space in dir" It's a very bad idea to use short name, because you can disable short name on windows.

This reverts commit 6cb438d7fc.

Fixes #3372
This commit is contained in:
Manus Freedom 2015-06-03 15:20:44 +02:00 committed by Jordan Sissel
parent 793f2a25fe
commit cf959c7182
3 changed files with 3 additions and 9 deletions

View file

@ -2,9 +2,7 @@
SETLOCAL
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
set SCRIPT_DIR=%~dp0
CALL %SCRIPT_DIR%\setup.bat
:EXEC

View file

@ -2,9 +2,7 @@
SETLOCAL
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
set SCRIPT_DIR=%~dp0
CALL %SCRIPT_DIR%\setup.bat
:EXEC

View file

@ -2,9 +2,7 @@
SETLOCAL
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
set SCRIPT_DIR=%~dp0
CALL %SCRIPT_DIR%\setup.bat
:EXEC