make.bat: only warn about python if lib folder is cloned

First time builders get spooked by this warning and start
installing python trying to resolve it. This isn't needed
and we should only warn about python being missing if the
lib folder is cloned, but python is still somehow not found.

This was "fixed" a few times before, but it took a bit
to find the right filename to check for the new library
folder.
This commit is contained in:
Ray Molenkamp 2024-02-26 16:45:57 -07:00
parent 5d9e127234
commit 0c29afe214

@ -24,7 +24,7 @@ if EXIST %PYTHON% (
)
if NOT EXIST %PYTHON% (
if EXIST %BLENDER_DIR%\lib\windows_x64\ (
if EXIST %BLENDER_DIR%\lib\windows_x64\.git (
echo Warning: Python not found, there is likely an issue with the library folder
)
set PYTHON=""