From 0730c971b8f511f595e024761839ad780ba1a0fd Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Mon, 10 Jan 2022 12:39:43 +0100 Subject: [PATCH] checkcode.sh: Add container-entrypoint Closes #67 Reported-by: Marius Kriegerowski Signed-off-by: Jan Kiszka --- scripts/checkcode.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkcode.sh b/scripts/checkcode.sh index 33ee780..1949581 100755 --- a/scripts/checkcode.sh +++ b/scripts/checkcode.sh @@ -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