From 20a848fa93e04a340482ccd2ec9b55d511a60670 Mon Sep 17 00:00:00 2001 From: Taegyun Ha Date: Tue, 17 Dec 2024 16:04:38 +0000 Subject: [PATCH] Fix issue with ocio_depts handling spaces in file paths --- share/dev/windows/ocio_deps.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/dev/windows/ocio_deps.bat b/share/dev/windows/ocio_deps.bat index c616bebf5a..4c567954ba 100644 --- a/share/dev/windows/ocio_deps.bat +++ b/share/dev/windows/ocio_deps.bat @@ -105,7 +105,7 @@ if ErrorLevel 1 ( echo Checking for Microsoft Visual Studio... set MSVS_PATH= -for /f %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -format value -property installationPath -latest') do ( +for /f "delims=" %%i in ('"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -format value -property installationPath -latest') do ( echo Found Visual Studio installation at '%%i' set MSVS_PATH=%%i )