From 72a884bd4eb06a71118c1bddc2630c60fc43c92b Mon Sep 17 00:00:00 2001 From: "Kiss, Tibor" Date: Wed, 13 Dec 2023 16:35:54 +0100 Subject: [PATCH] Remove white space at rc-tag --- scripts/check_tag_info.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/check_tag_info.sh b/scripts/check_tag_info.sh index 24b0960d..28a5c8b9 100755 --- a/scripts/check_tag_info.sh +++ b/scripts/check_tag_info.sh @@ -21,9 +21,9 @@ RC_TAG=$(cat sec-scanners-config.yaml | grep "${RC_TAG_TO_CHECK}" | cut -d : -f if [[ "$IMAGE_TAG" != "$DESIRED_TAG" ]] || [[ "$RC_TAG" != "$DESIRED_TAG" ]]; then # ERROR: Tag issue echo "Tags are not correct: - - wanted '$DESIRED_TAG' - - security-scanner image tag: '$IMAGE_TAG' - - rc-tag: '$RC_TAG'" + - wanted: $DESIRED_TAG + - security-scanner image tag: $IMAGE_TAG + - rc-tag: $RC_TAG" exit 1 fi