From d56dba0752e6b7d2dcac2c0d0e2e3ccddf80cd2a Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 9 May 2021 10:03:34 +0200 Subject: [PATCH] ci: suppress shellcheck warnings $flags can contain multiple flags and we must expand them here. --- ci/run | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.43.2