From 3a815a47e2169c7cf944719a9401ef21fa317e9d Mon Sep 17 00:00:00 2001
From: Ron <45816308+rjaegers@users.noreply.github.com>
Date: Tue, 5 Mar 2024 13:59:34 +0000
Subject: [PATCH] chore: fix comment layout
---
.../update-vscode-extensions/update-vscode-extensions.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/actions/update-vscode-extensions/update-vscode-extensions.sh b/.github/actions/update-vscode-extensions/update-vscode-extensions.sh
index ef2c179d..1f456b8d 100755
--- a/.github/actions/update-vscode-extensions/update-vscode-extensions.sh
+++ b/.github/actions/update-vscode-extensions/update-vscode-extensions.sh
@@ -19,7 +19,7 @@ for EXTENSION in $(echo $JSON | jq -r '.[].customizations.vscode.extensions | fl
GITHUB_URL=$(echo $LATEST_NON_PRERELEASE_VERSION_JSON | jq -r '.properties | map(select(.key == "Microsoft.VisualStudio.Services.Links.GitHub"))[] | .value')
RELEASE_DETAILS=$(gh release view --json body -R $GITHUB_URL | jq -r '.body')
- UPDATE_DETAILS=$(printf "Updates \`%s\` from %s to %s\nRelease notes
%s \n\n%s" $NAME $CURRENT_VERSION $LATEST_NON_PRERELEASE_VERSION "$RELEASE_DETAILS" "$UPDATE_DETAILS")
+ UPDATE_DETAILS=$(printf "Updates \`%s\` from %s to %s\n\nRelease notes
\n\n%s\n \n\n\n\n%s" $NAME $CURRENT_VERSION $LATEST_NON_PRERELEASE_VERSION "$RELEASE_DETAILS" "$UPDATE_DETAILS")
fi
EXTENSIONS="\"$NAME@$LATEST_NON_PRERELEASE_VERSION\",$EXTENSIONS"