]> ruderich.org/simon Gitweb - safcm/safcm.git/commitdiff
ci: suppress shellcheck warnings
authorSimon Ruderich <simon@ruderich.org>
Sun, 9 May 2021 08:03:34 +0000 (10:03 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 9 May 2021 08:23:51 +0000 (10:23 +0200)
$flags can contain multiple flags and we must expand them here.

ci/run

diff --git a/ci/run b/ci/run
index 45db771a7e9a40e71cfcc49cdb834a5c7db248ac..1b240a600b2b33f0d7b45924be6d6859320c13ae 100755 (executable)
--- a/ci/run
+++ b/ci/run
@@ -16,14 +16,18 @@ fi
 SAFCM_CI_RUN=1
 export SAFCM_CI_RUN
 
+# shellcheck disable=SC2086
 make $flags
+# shellcheck disable=SC2086
 make test $flags
 
 # Strict umask
 umask 077
 rm -rf ./*
 git checkout .
+# shellcheck disable=SC2086
 make $flags
+# shellcheck disable=SC2086
 make test $flags
 
 # Additional static checks only run in CI