Revert "Migrate bcr_postsubmit.py from gsutil to gcloud storage" (#2587)

Reverts bazelbuild/continuous-integration#2586

Failed with:
`ERROR: (gcloud.storage.rsync) unrecognized arguments: --checksum (did
you mean '--checksums-only'?)`
diff --git a/buildkite/bazel-central-registry/bcr_postsubmit.py b/buildkite/bazel-central-registry/bcr_postsubmit.py
index 82095bd..78425b0 100755
--- a/buildkite/bazel-central-registry/bcr_postsubmit.py
+++ b/buildkite/bazel-central-registry/bcr_postsubmit.py
@@ -153,11 +153,11 @@
 def sync_bcr_content():
     print_expanded_group(":gcloud: Sync BCR content")
     subprocess.check_output(
-        ["gcloud", "storage", "cp", "--cache-control=no-cache", "./bazel_registry.json", BCR_BUCKET]
+        ["gsutil", "-h", "Cache-Control:no-cache", "cp", "./bazel_registry.json", BCR_BUCKET]
     )
     subprocess.check_output(
         # -c Use checksum to compare files
-        ["gcloud", "storage", "rsync", "--recursive", "--checksum", "--cache-control=no-cache", "./modules", BCR_BUCKET + "modules"]
+        ["gsutil", "-h", "Cache-Control:no-cache", "-m", "rsync", "-c", "-r", "./modules", BCR_BUCKET + "modules"]
     )
 
 
@@ -167,7 +167,7 @@
         f.write(get_commit())
 
     dest = os.path.join(BCR_BUCKET, LAST_GREEN_FILE)
-    subprocess.check_output(["gcloud", "storage", "cp", path, dest])
+    subprocess.check_output(["gsutil", "cp", path, dest])
 
 
 def main():