runpylint.sh: Export RUN_PYLINT_* variables

Some of the RUN_PYLINT_* variables are evaluated in a python script. To
ensure that they are passed to it, they need to be exported.
This commit is contained in:
Till Maas 2020-04-19 10:56:57 +02:00
parent c398f401f9
commit ebbec7708f

View file

@ -31,5 +31,8 @@ if [[ "${RUN_PYLINT_SETUP_MODULE_UTILS}" ]]; then
lsr_setup_module_utils
fi
export RUN_PYLINT_DISABLED
export RUN_PYLINT_EXCLUDE
export RUN_PYLINT_INCLUDE
set -x
python ${SCRIPTDIR}/custom_pylint.py "$@"