From e935acae2c0980c966409004e2a46bea667ca319 Mon Sep 17 00:00:00 2001 From: Severin Kaderli Date: Thu, 13 Dec 2018 22:28:06 +0100 Subject: [PATCH] Fix paths again in .gitlab-ci.yml Signed-off-by: Severin Kaderli --- .gitlab-ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 28a097a..7e057cd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,13 +6,13 @@ before_script: Lint: script: - shellcheck -x --exclude=SC2034,SC1091 ./system/bin/* - - shellcheck -x ./system/bin/.aliases - - shellcheck -x ./system/bin/.bash_logout - - shellcheck -x ./system/bin/.bash_profile - - shellcheck -x ./system/bin/.bashrc - - shellcheck -x ./system/bin/.env - - shellcheck -x ./system/bin/.keyleds - - shellcheck -x ./system/bin/.xinitrc - - shellcheck -x ./system/bin/.xprofile + - shellcheck -x ./system/.aliases + - shellcheck -x ./system/.bash_logout + - shellcheck -x ./system/.bash_profile + - shellcheck -x ./system/.bashrc + - shellcheck -x ./system/.env + - shellcheck -x ./system/.keyleds + - shellcheck -x ./system/.xinitrc + - shellcheck -x ./system/.xprofile - shellcheck -x ./install.sh - shellcheck -x ./post-install.sh