Skip to content

Commit

Permalink
Merge pull request #748 from szdmr/master
Browse files Browse the repository at this point in the history
Fix errors when .bat file path contains paranthesis.
  • Loading branch information
muuki88 committed Mar 6, 2016
2 parents 9fb55c7 + cadac9d commit fd3d9cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ for %%x in (!cmdcmdline!) do if %%~x==/c set DOUBLECLICKED=1
rem FIRST we load the config file of extra options.
set "CFG_FILE=%@@APP_ENV_NAME@@_HOME%\@@APP_ENV_NAME@@_config.txt"
set CFG_OPTS=
if exist %CFG_FILE% (
if exist "%CFG_FILE%" (
FOR /F "tokens=* eol=# usebackq delims=" %%i IN ("%CFG_FILE%") DO (
set DO_NOT_REUSE_ME=%%i
rem ZOMG (Part #2) WE use !! here to delay the expansion of
Expand Down

0 comments on commit fd3d9cf

Please sign in to comment.