summaryrefslogtreecommitdiffstats
path: root/build-gluster-org
diff options
context:
space:
mode:
Diffstat (limited to 'build-gluster-org')
-rw-r--r--build-gluster-org/scripts/python-lint.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-gluster-org/scripts/python-lint.sh b/build-gluster-org/scripts/python-lint.sh
index b70ae0f..74fb9e1 100644
--- a/build-gluster-org/scripts/python-lint.sh
+++ b/build-gluster-org/scripts/python-lint.sh
@@ -15,11 +15,11 @@ pip install -I flake8 pylint
# run flake8
flake8 . >"$RESULT/flake8-check.txt"
-FLAKE_COUNT="$(wc -l < '$RESULT/flake8-check.txt')"
+FLAKE_COUNT="$(wc -l < $RESULT/flake8-check.txt)"
#run pylint
find . -iname "*.py" | xargs pylint --output-format=text >"$RESULT/pylint-check.txt"
-PYLINT_COUNT="$(egrep -wc 'R:|C:|W:|E:|F:' pylint-check.txt)"
+PYLINT_COUNT="$(egrep -wc 'R:|C:|W:|E:|F:' $RESULT/pylint-check.txt)"
#fail build if there's any pylint and flake8 related issues
if [[ "$FLAKE_COUNT" -gt 0 && "$PYLINT_COUNT" -gt 0 ]]; then