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:
Costin Leau 2018-06-13 23:37:51 +03:00 committed by GitHub
parent bbb7889236
commit 93662c6385
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"
)
)