summaryrefslogtreecommitdiffstats
path: root/git
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2015-04-22 16:47:34 -0400
committerKenny Woodson <kwoodson@redhat.com>2015-04-22 16:49:42 -0400
commit50acabea188347ae76c5215dd25c08dd02fc0f65 (patch)
tree083e5c07ea4143cfd520b88ddb2027d2eb8d9c26 /git
parent8f0e10e33726db46da1882b03d2e3a6a9689924c (diff)
downloadopenshift-50acabea188347ae76c5215dd25c08dd02fc0f65.tar.gz
openshift-50acabea188347ae76c5215dd25c08dd02fc0f65.tar.bz2
openshift-50acabea188347ae76c5215dd25c08dd02fc0f65.tar.xz
openshift-50acabea188347ae76c5215dd25c08dd02fc0f65.zip
Adding pylint binary call instead of python module
Diffstat (limited to 'git')
-rwxr-xr-xgit/pylint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/pylint.sh b/git/pylint.sh
index 73d08e00c..e070fe7b2 100755
--- a/git/pylint.sh
+++ b/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 $?