Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2021-10-21 16:36:21 +0300
committerRay Molenkamp <github@lazydodo.com>2021-10-21 16:36:21 +0300
commitfd560ef2af6aef06e6dad00854bfdd3fd81a8d6f (patch)
treec1c16a917aa08ecafd22f136aa6c740350cfa90a /build_files/windows/format.cmd
parent7681326acdd66ecad9f85f57d1d14858b6223e51 (diff)
Windows: Fix finding python for build helpers
It was still looking for the 3.7 folder rather than 3.9
Diffstat (limited to 'build_files/windows/format.cmd')
-rw-r--r--build_files/windows/format.cmd2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/windows/format.cmd b/build_files/windows/format.cmd
index d19595bf042..d5003c9f8d8 100644
--- a/build_files/windows/format.cmd
+++ b/build_files/windows/format.cmd
@@ -10,7 +10,7 @@ exit /b 1
echo found clang-format in %CF_PATH%
if EXIST %PYTHON% (
- set PYTHON=%BLENDER_DIR%\..\lib\win64_vc15\python\37\bin\python.exe
+ set PYTHON=%BLENDER_DIR%\..\lib\win64_vc15\python\39\bin\python.exe
goto detect_python_done
)