Remove explicit "-a public-read" from gsutil calls.
They break once we switch to bucket-level permissions and they're unnecessary, because the buckets are public readable anyway, already.
PiperOrigin-RevId: 243990103
diff --git a/scripts/docs/generate_versioned_docs.sh b/scripts/docs/generate_versioned_docs.sh
index 741d59c..fb232c6 100755
--- a/scripts/docs/generate_versioned_docs.sh
+++ b/scripts/docs/generate_versioned_docs.sh
@@ -61,7 +61,7 @@
# should there be such a need, please file an issue.
#
# -a public-read: set the default ACL for uploaded archives to public-read for Bazel to download it.
- gsutil cp -n -a public-read $(cd $SCRIPT_DIR && bazel info bazel-genfiles)/site/jekyll-tree.tar gs://bazel-mirror/bazel_versioned_docs/jekyll-tree-$DOC_VERSION.tar
+ gsutil cp -n $(cd $SCRIPT_DIR && bazel info bazel-genfiles)/site/jekyll-tree.tar gs://bazel-mirror/bazel_versioned_docs/jekyll-tree-$DOC_VERSION.tar
log_info "Done."
log_info "Now, please add \"$DOC_VERSION\" to the doc_versions list in <workspace>/site/_config.yml."