From 963d23b0debc4c37dfcfca6bfceec71b4ea4bd77 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 20 Jun 2025 17:26:15 +0200 Subject: [PATCH] Make update: Tweak logic for the LFS fallback Check for both git.b.o and projects.b.o pars of the URL. The LFS objects should be able to be fetched from either of those domains. Pull Request: https://projects.blender.org/blender/blender/pulls/140647 --- build_files/utils/make_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_files/utils/make_update.py b/build_files/utils/make_update.py index 19caa7caa61..2d46078ff51 100755 --- a/build_files/utils/make_update.py +++ b/build_files/utils/make_update.py @@ -634,7 +634,7 @@ def lfs_fallback_setup(args: argparse.Namespace) -> None: for remote in remotes: url = make_utils.git_get_remote_url(args.git_command, remote) - if "projects.blender.org" not in url: + if "projects.blender.org" not in url and "git.blender.org" not in url: make_utils.git_set_config(args.git_command, f"lfs.{remote}.searchall", "true") else: add_fallback_remote = False