Use quotes in the call invocation (#31249)
Adding quotes around call invocation as paths can contain spaces that otherwise would cause the command to fail
This commit is contained in:
parent
bbb7889236
commit
93662c6385
|
@ -2,7 +2,7 @@ call "%~dp0elasticsearch-env.bat" || exit /b 1
|
|||
|
||||
if defined ES_ADDITIONAL_SOURCES (
|
||||
for %%a in ("%ES_ADDITIONAL_SOURCES:;=","%") do (
|
||||
call %~dp0%%a
|
||||
call "%~dp0%%a"
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue