diff --git a/README.md b/README.md index ed4b94c..07b3295 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,8 @@ Google Cloud Storage bucket: 1. Confirm/request access to the shared GCP project with your Google contact. The Googler will give you a project name to use. -2. Install the gcloud CLI from https://cloud.google.com/sdk/docs/install +2. Install the gcloud CLI from https://docs.cloud.google.com/sdk/docs/install-sdk#latest-version + * Skip the "Before you begin" steps. * If installation fails with the above method, try the alternative linked [here](https://cloud.google.com/sdk/docs/downloads-versioned-archives#installation_instructions). 3. Download and execute [this script](src/results_uploader/gcloud_setup.py) to diff --git a/src/results_uploader/gcloud_setup.py b/src/results_uploader/gcloud_setup.py index 912819c..6f2da8d 100755 --- a/src/results_uploader/gcloud_setup.py +++ b/src/results_uploader/gcloud_setup.py @@ -31,7 +31,8 @@ def _run_gcloud_command(args: list[str]) -> None: except FileNotFoundError: logging.error( 'Failed to run `gcloud` commands! Please install the `gcloud` CLI ' - 'from https://cloud.google.com/sdk/docs/install\n') + 'from https://docs.cloud.google.com/sdk/docs/install-sdk#latest-version ' + '(Skip the "Before you begin" steps.)') raise