Fix: handle whitespace paths for Windows launchers

This commit is contained in:
Dominic Della Valle
2021-07-10 04:46:07 -04:00
committed by Ryan Kurtz
parent 3c1e51d0c0
commit 2296256464
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ set "SERVER_DIR=%~dp0"
set "SERVER_DIR=%SERVER_DIR:~0,-1%"
rem Ensure Ghidra path doesn't contain illegal characters
if not %SERVER_DIR:!=%==%SERVER_DIR% (
if not "%SERVER_DIR:!=%"=="%SERVER_DIR%" (
echo Ghidra path cannot contain a "!" character.
exit /B 1
)

View File

@@ -39,7 +39,7 @@ set "SUPPORT_DIR=%~dp0"
set "SUPPORT_DIR=%SUPPORT_DIR:~0,-1%"
:: Ensure Ghidra path doesn't contain illegal characters
if not %SUPPORT_DIR:!=%==%SUPPORT_DIR% (
if not "%SUPPORT_DIR:!=%"=="%SUPPORT_DIR%" (
echo Ghidra path cannot contain a "!" character.
set ERRORLEVEL=1
goto exit1