Skip to content

Commit 666f18c

Browse files
authored
ci/check-cherry-picks: fix indent of truncation marker (#415221)
2 parents e837c21 + ca57759 commit 666f18c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/check-cherry-picks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ while read -r new_commit_sha ; do
121121
# consider this too unlikely to happen, to deal with explicitly.
122122
max_length=10000
123123
if [ "${#diff}" -gt $max_length ]; then
124-
printf -v diff "%s\n\n[...truncated...]" "$(echo "$diff" | head -c $max_length | head -n-1)"
124+
printf -v diff "%s\n>\n> [...truncated...]" "$(echo "$diff" | head -c $max_length | head -n-1)"
125125
fi
126126
echo "$diff" >> $markdown_file
127127
echo '> ```' >> $markdown_file

0 commit comments

Comments
 (0)