Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tools/lkl/scripts/checkpatch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ for c in `git log --no-merges --pretty=format:%h HEAD ^$origin_master ^$tag`; do
git format-patch -1 -o $tmp $c
done

if [ -z "$c" ]; then
rmdir $tmp
exit 0
fi

./scripts/checkpatch.pl --ignore FILE_PATH_CHANGES $tmp/*.patch
rm $tmp/*.patch

Expand Down