checkcode.sh: Add container-entrypoint

Closes #67

Reported-by: Marius Kriegerowski <marius.kriegerowski@gfz-potsdam.de>
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
Jan Kiszka 2022-01-10 12:39:43 +01:00
parent df9b3af111
commit 0730c971b8

View File

@ -17,6 +17,6 @@ echo "Checking with doc8"
doc8 "$1"/docs --ignore-path "$1"/docs/_build || ERROR=$((ERROR + 4))
echo "Checking with shellcheck"
shellcheck "$1"/kas-container "$1"/scripts/release.sh "$1"/scripts/checkcode.sh || ERROR=$((ERROR + 8))
shellcheck "$1"/kas-container "$1"/scripts/release.sh "$1"/scripts/checkcode.sh "$1"/container-entrypoint || ERROR=$((ERROR + 8))
exit $ERROR