From 89622f1f122fa256026c6b785bf4e3ee8f95af0c Mon Sep 17 00:00:00 2001 From: chunfeng_tsin-2 Date: Tue, 3 Jun 2025 15:49:07 +0200 Subject: [PATCH] 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 --- build_files/windows/check_libraries.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_files/windows/check_libraries.cmd b/build_files/windows/check_libraries.cmd index 1ef19e6a827..2ea7ff6115c 100644 --- a/build_files/windows/check_libraries.cmd +++ b/build_files/windows/check_libraries.cmd @@ -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%" ) ) )