Files
workinf_Blender_Wasm/blender-5.2.0/build_files/windows/license.cmd
2026-08-12 04:47:48 -04:00

14 lines
275 B
Batchfile

if EXIST %PYTHON% (
goto detect_python_done
)
echo python not found in lib folder
exit /b 1
:detect_python_done
REM Use -B to avoid writing __pycache__ in lib directory and causing update conflicts.
%PYTHON% -B %BLENDER_DIR%\tools\utils_maintenance\make_license.py
:EOF