Skip to content

Commit

Permalink
Fixing an output formatting error
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Farley <[email protected]>
  • Loading branch information
adamfarley committed Dec 12, 2023
1 parent ba37e20 commit 9f19037
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tooling/build_autotriage/build_autotriage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,9 @@ generateOutputFile() {
echo "Failure: ${arrayOfFailedJobs[failedJobIndex]}"
echo "Cause: ${arrayOfRegexMetadata[regexID]}"
echo "Preventable: ${preventable}"
echo "```"
echo "${arrayOfErrorLinesForFailedJobs[failedJobIndex]}"
echo "```"
echo "\`\`\`"
echo "'${arrayOfErrorLinesForFailedJobs[failedJobIndex]}'"
echo "\`\`\`"
echo ""
done
echo "# End of list"
Expand All @@ -289,7 +289,7 @@ generateOutputFile() {
echo "# Script Issues"
for issueID in "${!buildIssues[@]}"
do
echo "- Issue ${issueID}: ${buildIssues[issueID]}\n"
echo "- Issue ${issueID}: ${buildIssues[issueID]}"
done
echo "# End of Issues"
fi
Expand Down

0 comments on commit 9f19037

Please sign in to comment.