Skip to content

Commit 06b47f2

Browse files
Don't show diffs when listing commits
Normally this script should only list merge commits without conflicts, so there shouldn't be a diff. But don't pollute the output if there is a diff. Signed-off-by: Gilles Peskine <[email protected]>
1 parent 002deb3 commit 06b47f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/bin/mbedtls-check-missing-changelog

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ for c in $merge_commits; do
3030
if git diff --name-only $c~1 $c | grep -q ChangeLog; then
3131
continue
3232
fi
33-
git show --oneline $c | grep .
33+
git show -s --oneline $c | grep .
3434
done

0 commit comments

Comments
 (0)