Commit fc65accfa8 for aom
commit fc65accfa88f726ca10c79f3815ffa514487e65b
Author: gurusai-voleti <gvoleti@google.com>
Date: Mon May 11 10:13:35 2026 +0000
Migrate gsutil to gcloud storage
Bug: b/512387213
Change-Id: I14adbef38cd6c10c0cba6bc05fe5a1b02d9e6897
diff --git a/README.md b/README.md
index 0a3a4b27a6..f821964342 100644
--- a/README.md
+++ b/README.md
@@ -471,9 +471,13 @@ with the necessary access permissions to do this for you.
NOTE: When a new test data file is added to the `aom-test-data` bucket, its
"Public access" is initially "Not public". We need to change its
"Public access" to "Public" by using the following
-[`gsutil`](https://cloud.google.com/storage/docs/gsutil_install) command:
+[`gcloud storage`](https://docs.cloud.google.com/sdk/docs/install-sdk)
+command:
~~~
- $ gsutil acl ch -g all:R gs://aom-test-data/test-data-file-name
+ $ gcloud storage objects add-iam-policy-binding \
+ gs://aom-test-data/test-data-file-name \
+ --member="allUsers" \
+ --role="roles/storage.objectViewer"
~~~
This command grants the `AllUsers` group READ access to the file named
"test-data-file-name" in the `aom-test-data` bucket.