summaryrefslogtreecommitdiffstats
path: root/git/pylint.sh
blob: e070fe7b2af6c57b5d7e9a7069b313067cb73e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash


OLDREV=$1
NEWREV=$2
TRG_BRANCH=$3

/usr/bin/git diff --name-only $OLDREV $NEWREV --diff-filter=ACM | \
 grep ".py$" | \
 xargs -r -I{} pylint --rcfile ${WORKSPACE}/git/.pylintrc  {}

exit $?