From 65bf8a81decf5c0966c65c2a2e4400e507008232 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 29 Mar 2023 21:22:09 +0300 Subject: [PATCH] Remove double spaces --- twine-upload.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/twine-upload.sh b/twine-upload.sh index 35722b0..63a6564 100755 --- a/twine-upload.sh +++ b/twine-upload.sh @@ -44,17 +44,17 @@ if [[ "${INPUT_USER}" == "__token__" && -z "${INPUT_PASSWORD}" ]] ; then # No password supplied by the user implies that we're in the OIDC flow; # retrieve the OIDC credential and exchange it for a PyPI API token. echo \ - '::notice::Attempting to perform OIDC credential exchange ' \ - 'to retrieve a temporary short-lived API token for authentication ' \ + '::notice::Attempting to perform OIDC credential exchange' \ + 'to retrieve a temporary short-lived API token for authentication' \ "against ${INPUT_REPOSITORY_URL}" INPUT_PASSWORD="$(python /app/oidc-exchange.py)" elif [[ "${INPUT_USER}" == '__token__' ]]; then echo \ - '::notice::Using a user-provided API token for authentication ' \ + '::notice::Using a user-provided API token for authentication' \ "against ${INPUT_REPOSITORY_URL}" else echo \ - '::notice::Using a username + password pair for authentication ' \ + '::notice::Using a username + password pair for authentication' \ "against ${INPUT_REPOSITORY_URL}}" fi