Fix: inconsistent directory path in make.bat

Add missing trailing backslash to BLENDER_DIR path in git submodule
update command to match the formatting used elsewhere in the script.

This prevents the following error when python is not found during
the update:

cannot change to .. submodule update lib/windows_x64': Invalid argument

Pull Request: https://projects.blender.org/blender/blender/pulls/139616
This commit is contained in:
chunfeng_tsin-2
2025-06-03 15:49:07 +02:00
committed by Ray molenkamp
parent 8907567a00
commit 89622f1f12

View File

@@ -56,7 +56,7 @@ if NOT EXIST "%BUILD_VS_LIBDIR%\.git" (
echo.
echo Python not found in external libraries, updating to latest version
echo.
"%GIT%" -C "%BLENDER_DIR%" submodule update "%BUILD_VS_LIBDIR%"
"%GIT%" -C "%BLENDER_DIR%\" submodule update "%BUILD_VS_LIBDIR%"
)
)
)