diff --git a/pylint.sh b/pylint.sh index 106715fbb..ba7a6c3af 100755 --- a/pylint.sh +++ b/pylint.sh @@ -1,5 +1,5 @@ -#!/bin/sh +#!/bin/bash set -e -x env -pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out || /bin/true +pylint -f parseable --rcfile pylint.rc "$@" | tee pylint.out; test $PIPESTATUS -eq 0