From 5200c378c6a4918be8e871b0501e56fe97c80e08 Mon Sep 17 00:00:00 2001 From: Isaac <> Date: Wed, 11 Jun 2025 13:38:14 +0800 Subject: [PATCH] Fix local bazellocation --- build-system/Make/BazelLocation.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-system/Make/BazelLocation.py b/build-system/Make/BazelLocation.py index e7b65b092e..d1e52cfac6 100644 --- a/build-system/Make/BazelLocation.py +++ b/build-system/Make/BazelLocation.py @@ -35,6 +35,8 @@ def calculate_sha256(file_path): return sha256_hash.hexdigest() def resolve_cache_host(cache_host): + if cache_host is None: + return None if "@auto" in cache_host: host_parts = cache_host.split("@auto") host_left_part = host_parts[0]