From cd75ec37cc918b9c3b8634b0068459d3bf26260b Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Sat, 23 Feb 2019 14:46:45 -0800 Subject: [PATCH] Fix shellcheck call --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 61865ac..01c7cf2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ lint-shell-script: services: image: koalaman/shellcheck:latest script: - - find . -name "*.sh" -execdir shellcheck {} \; + - find . -name "*.sh" -exec shellcheck {} \; # # IMAGE BUILDS/PUSHES -- GitLab