Skip to content

Commit 72c1224

Browse files
committed
Use correct quoting for paths in post_install.bat
1 parent 2ff00ae commit 72c1224

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

post_install.bat

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
1010

1111
REM dpinst /PATH has problems with relative paths, so use absolute path.
1212
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
13-
drivers\dpinst-amd64.exe /PATH %cd%\drivers\gemma %ARGS%
13+
drivers\dpinst-amd64.exe /PATH "%cd%\drivers\gemma" %ARGS%
1414
) ELSE IF "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
15-
drivers\dpinst-amd64.exe /PATH %cd%\drivers\gemma %ARGS%
15+
drivers\dpinst-amd64.exe /PATH "%cd%\drivers\gemma" %ARGS%
1616
) ELSE (
17-
drivers\dpinst-x86.exe /PATH %cd%\drivers\gemma %ARGS%
17+
drivers\dpinst-x86.exe /PATH "%cd%\drivers\gemma" %ARGS%
1818
)
1919

2020
exit /b 0

0 commit comments

Comments
 (0)