Skip to content

Commit 079ac7f

Browse files
kjnilssonmichaelklishin
authored andcommitted
Handle paths with spaces on disk volumes with 8.3 name creation disabled
1 parent d04cb67 commit 079ac7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/rabbitmq-env.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,8 @@ goto :filter_paths_done
386386
set paths=%1
387387
set paths=%paths:"=%
388388
for /f "tokens=1* delims=;" %%a in ("%paths%") do (
389-
if not "%%a" == "" call :filter_path %%a
390-
if not "%%b" == "" call :filter_paths %%b
389+
if not "%%a" == "" call :filter_path "%%a"
390+
if not "%%b" == "" call :filter_paths "%%b"
391391
)
392392
set paths=
393393
exit /b

0 commit comments

Comments
 (0)