diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2015-04-22 16:47:34 -0400 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2015-04-22 16:49:42 -0400 |
commit | 50acabea188347ae76c5215dd25c08dd02fc0f65 (patch) | |
tree | 083e5c07ea4143cfd520b88ddb2027d2eb8d9c26 | |
parent | 8f0e10e33726db46da1882b03d2e3a6a9689924c (diff) | |
download | openshift-50acabea188347ae76c5215dd25c08dd02fc0f65.tar.gz openshift-50acabea188347ae76c5215dd25c08dd02fc0f65.tar.bz2 openshift-50acabea188347ae76c5215dd25c08dd02fc0f65.tar.xz openshift-50acabea188347ae76c5215dd25c08dd02fc0f65.zip |
Adding pylint binary call instead of python module
-rwxr-xr-x | git/pylint.sh | 2 |
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 $? |