Browse Source

Adding pylint binary call instead of python module

Kenny Woodson 10 years ago
parent
commit
50acabea18
1 changed files with 1 additions and 1 deletions
  1. 1 1
      git/pylint.sh

+ 1 - 1
git/pylint.sh

@@ -7,6 +7,6 @@ TRG_BRANCH=$3
 
 /usr/bin/git diff --name-only $OLDREV $NEWREV --diff-filter=ACM | \
  grep ".py$" | \
- xargs -r -I{} /usr/bin/python -m pylint --rcfile ${WORKSPACE}/git/.pylintrc  {}
+ xargs -r -I{} pylint --rcfile ${WORKSPACE}/git/.pylintrc  {}
 
 exit $?