From 29583a059759600ff01c4100d473c5de090f1cd7 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Thu, 13 Dec 2018 22:13:28 +0100 Subject: [PATCH] Fix exclude in .gitlab-ci.yml Signed-off-by: Severin Kaderli --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8d95e86..d4e3da3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,6 +5,6 @@ before_script: Lint: script: - - shellcheck -x disable=SC2034 ./system/bin/* + - shellcheck -x --exclude=SC2034 ./system/bin/* - shellcheck -x ./install.sh - shellcheck -x ./post-install.sh