From 8971b02697bc3d754c3624938ff9251ef080eb9e Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Wed, 1 Nov 2023 15:54:40 -0400 Subject: [PATCH] chore: bootstrapper code clean up (#11963) Addresses https://github.com/googleapis/google-cloud-python/pull/11959#discussion_r1379060517 --- containers/python-bootstrap-container/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/python-bootstrap-container/entrypoint.sh b/containers/python-bootstrap-container/entrypoint.sh index c12921589401..82afad928671 100755 --- a/containers/python-bootstrap-container/entrypoint.sh +++ b/containers/python-bootstrap-container/entrypoint.sh @@ -112,9 +112,9 @@ sed -i -e "s|apiProductDocumentation|$PRODUCT_DOCS_URL|" "${WORKSPACE_DIR}/${MON # If the API is `cloud`, the docs will be published to `cloud.google.com`. # For non-cloud, the docs will be published to `googleapis.dev`. if [[ $FOLDER_NAME =~ "cloud" ]]; then - CLIENT_DOCS_URL="$(echo https://cloud.google.com/python/docs/reference/$FOLDER_NAME/latest)" + CLIENT_DOCS_URL="https://cloud.google.com/python/docs/reference/$FOLDER_NAME/latest" else - CLIENT_DOCS_URL="$(echo https://googleapis.dev/python/$FOLDER_NAME/latest)" + CLIENT_DOCS_URL="https://googleapis.dev/python/$FOLDER_NAME/latest" fi # Update clientDocumentation in .repo-metadata.json