mirror of
https://github.com/blender/blender
synced 2026-09-26 16:15:47 +03:00
Merge branch 'blender-v4.1-release'
This commit is contained in:
commit
23c892366b
1 changed files with 7 additions and 6 deletions
|
|
@ -543,8 +543,6 @@ def submodules_update(args: argparse.Namespace, branch: Optional[str]) -> str:
|
|||
|
||||
msg = ""
|
||||
|
||||
call((args.git_command, "lfs", "install"))
|
||||
|
||||
msg += scripts_submodules_update(args, branch)
|
||||
|
||||
msg += floating_libraries_update(args, branch)
|
||||
|
|
@ -572,10 +570,8 @@ if __name__ == "__main__":
|
|||
else:
|
||||
branch = 'main'
|
||||
|
||||
if not args.no_libraries:
|
||||
update_precompiled_libraries(args)
|
||||
if args.use_tests:
|
||||
update_tests_data_files(args)
|
||||
# Submodules and precompiled libraries require Git LFS.
|
||||
call((args.git_command, "lfs", "install"))
|
||||
|
||||
if not args.no_blender:
|
||||
blender_skip_msg = git_update_skip(args)
|
||||
|
|
@ -584,6 +580,11 @@ if __name__ == "__main__":
|
|||
if blender_skip_msg:
|
||||
blender_skip_msg = "Blender repository skipped: " + blender_skip_msg + "\n"
|
||||
|
||||
if not args.no_libraries:
|
||||
update_precompiled_libraries(args)
|
||||
if args.use_tests:
|
||||
update_tests_data_files(args)
|
||||
|
||||
if not args.no_submodules:
|
||||
submodules_skip_msg = submodules_update(args, branch)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue