mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-14 09:11:27 +00:00
14 lines
224 B
Bash
Executable File
14 lines
224 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
rootdir=$(readlink -f $(dirname $0)/..)
|
|
scriptsdir=${rootdir}/scripts
|
|
base_commit=${1:-master}
|
|
|
|
err=0
|
|
|
|
(cd ${rootdir} && git diff ${base_commit} | ${scriptsdir}/checkpatch -) || err=1
|
|
|
|
exit $err
|