Support systems with flake8 for python3 by default

This commit is contained in:
Laurent Bachelier 2012-12-19 15:12:18 +01:00
commit c64fb9150e

View file

@ -2,9 +2,17 @@
cd $(dirname $0) cd $(dirname $0)
cd .. cd ..
FLAKE8=""
if which flake8 >/dev/null 2>&1; then if which flake8 >/dev/null 2>&1; then
FLAKE8=flake8
fi
if which flake8-python2 >/dev/null 2>&1; then
FLAKE8=flake8-python2
fi
if [ -n "${FLAKE8}" ]; then
set -e set -e
flake8 --ignore=E,W *.py weboob modules contrib scripts/* ${FLAKE8} --ignore=E,W *.py weboob modules contrib scripts/*
else else
# grep will return 0 only if it founds something, but our script # grep will return 0 only if it founds something, but our script
# wants to return 0 when it founds nothing! # wants to return 0 when it founds nothing!