From 466602a60879fa1ec6a5e22ab0d92b97a0582a79 Mon Sep 17 00:00:00 2001 From: Severin Neumann Date: Sat, 27 Jan 2024 16:40:00 +0100 Subject: [PATCH] Fix bug in registry update script (#3863) Signed-off-by: svrnm Co-authored-by: Phillip Carter --- .github/workflows/scripts/update-registry-versions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/update-registry-versions.sh b/.github/workflows/scripts/update-registry-versions.sh index 72e7deca8591..b07947730b13 100755 --- a/.github/workflows/scripts/update-registry-versions.sh +++ b/.github/workflows/scripts/update-registry-versions.sh @@ -97,7 +97,7 @@ for yaml_file in ${FILES}; do done; # We use the sha1 over all version updates to uniquely identify the PR. -tag=$(echo body | sha1sum | awk '{print $1;}') +tag=$(echo "${body}" | sha1sum | awk '{print $1;}') message="Auto-update registry versions (${tag})" branch="opentelemetrybot/auto-update-registry-${tag}"