make curl fail loudly for non-2xx downloads

`curl` fails silently if the status code of the response is not 2xx. This CL makes it fail loudly, and break the pipe.

Closes #11800.

PiperOrigin-RevId: 322353682
diff --git a/scripts/docs/Dockerfile b/scripts/docs/Dockerfile
index 6ee5eef..b45db38 100644
--- a/scripts/docs/Dockerfile
+++ b/scripts/docs/Dockerfile
@@ -7,7 +7,7 @@
 # $ docker run -it --rm -p 8000:8000 --entrypoint /bin/bash bazel-jekyll
 # $ git clone https://bazel.googlesource.com/bazel
 # $ cd bazel
-# $ curl -o bazel https://releases.bazel.build/0.19.0/release/bazel-0.19.0-linux-x86_64
+# $ curl -fo bazel https://releases.bazel.build/0.19.0/release/bazel-0.19.0-linux-x86_64
 # $ chmod +x bazel
 # $ ./bazel build //site
 # $ cd bazel-bin/site/site-build
@@ -25,7 +25,7 @@
 
 RUN ln -fs /usr/bin/python3.7 /usr/bin/python
 
-RUN curl -Lo /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.3.0/bazelisk-linux-amd64 && \
+RUN curl -fLo /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.3.0/bazelisk-linux-amd64 && \
     chown root:root /usr/local/bin/bazel && \
     chmod 0755 /usr/local/bin/bazel
 RUN bazel version
diff --git a/scripts/docs/doc_versions.bzl b/scripts/docs/doc_versions.bzl
index 4c62ccd..6e893dc 100644
--- a/scripts/docs/doc_versions.bzl
+++ b/scripts/docs/doc_versions.bzl
@@ -15,7 +15,7 @@
 # To get the checksum of the versioned documentation tree tarball, run the
 # following command with the selected Bazel version:
 #
-# $ curl -s https://mirror.bazel.build/bazel_versioned_docs/jekyll-tree-0.20.0.tar | sha256sum | cut -d" " -f1
+# $ curl -fs https://mirror.bazel.build/bazel_versioned_docs/jekyll-tree-0.20.0.tar | sha256sum | cut -d" " -f1
 # bb79a63810bf1b0aa1f89bd3bbbeb4a547a30ab9af70c9be656cc6866f4b015b
 #
 # This list must be kept in sync with `doc_versions` variable in //site:_config.yml