summaryrefslogtreecommitdiff
path: root/contrib/scripts/checkpatch-git-post-commit-hook
blob: 964791077cef2ec2929af5b490a6614077980eb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

# contrib/scripts/checkpatch-git-post-commit-hook:
#   Call this script via ".git/hooks/post-commit"

DISABLED=${NM_HOOK_DISABLED:0}

if [ "$DISABLED" == 1 ]; then
    echo "COMMIT HOOK DISABLED"
    exit 0
fi

FILE=contrib/scripts/checkpatch-feature-branch.sh
if [ -x "$FILE" ]; then
    "$FILE"
    exit 0
fi

FILE=contrib/scripts/checkpatch.pl
if [ -x "$FILE" ]; then
    git format-patch -U65535 --stdout -1 | "$FILE"
    exit 0
fi