From c3b00891ba6d9f13f3f49643f2fd1791b377ae89 Mon Sep 17 00:00:00 2001 From: angristan Date: Sat, 22 Sep 2018 00:23:45 +0200 Subject: [PATCH] Fix GitLab CI --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8040c9c..6961880 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: koalaman/shellcheck:stable +image: debian:buster-slim stages: - Bash linting @@ -6,4 +6,6 @@ stages: shellcheck: stage: Bash linting script: - - shellcheck openvpn-install.sh + - apt-get update + - apt-get install -y shellcheck + - shellcheck -e SC1091,SC2164,SC2034,SC1072,SC1073,SC1009 openvpn-install.sh