From: Simon Ruderich Date: Sun, 9 May 2021 08:03:34 +0000 (+0200) Subject: ci: suppress shellcheck warnings X-Git-Url: https://ruderich.org/simon/gitweb/?p=safcm%2Fsafcm.git;a=commitdiff_plain;h=d56dba0752e6b7d2dcac2c0d0e2e3ccddf80cd2a ci: suppress shellcheck warnings $flags can contain multiple flags and we must expand them here. --- diff --git a/ci/run b/ci/run index 45db771..1b240a6 100755 --- 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