From 5a784e865ebfaeec514d214447a24bd73c43e327 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Thu, 29 Jan 2026 10:14:55 +0000 Subject: [PATCH] chore: Migrate gsutil usage to gcloud storage --- bazel/deps-cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/deps-cache.py b/bazel/deps-cache.py index 97b4756..7a1ab07 100755 --- a/bazel/deps-cache.py +++ b/bazel/deps-cache.py @@ -160,7 +160,7 @@ def verify(tmpdir, name, source, cache, upload, **kwargs): same = cmp(source_file, cache_file) if not same and args.populate: print(f"[ Uploading {upload} ]") - subprocess.run(["gsutil", "-q", "cp", source_file, upload], check=False) + subprocess.run(["gcloud", "storage", "cp", source_file, upload], check=False) print(f"[ Reverifying {cache} ]") urlretrieve(cache, cache_file) same = cmp(source_file, cache_file)