add exclusion for source cmd

files called by source can be not present on a dev environment
This commit is contained in:
Mickael 2019-02-25 21:00:12 +01:00
parent b65f5a7402
commit 1d56ef55c0
2 changed files with 1 additions and 1 deletions

BIN
.package_linter.py.swp Normal file

Binary file not shown.

View file

@ -440,7 +440,7 @@ def check_deprecated_practices(script):
def check_shellcheck(script_name):
try:
subprocess.run(["shellcheck","-x",script_name])
subprocess.run(["shellcheck","-e","SC1091","-x",script_name])
except FileNotFoundError as err:
print_warning("Binary shellcheck not found in $PATH, try to install it")
print_warning("Cannot parse the script with shellcheck")