diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index 721e7cdc..ac17c63a 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -19,7 +19,9 @@ jobs: env: # Excluding SC3043: In POSIX sh, 'local' is undefined. Ignoring because local is a built-in command in FreeBSD # Excluding SC2154: Variable is referenced but not assigned. Because we include files in the scripts - SHELLCHECK_OPTS: -e SC3043 -e SC2154 + # Excluding SC3037: In POSIX sh, echo flags are undefined. Ignoring temporarily until we decide to keep it or + # use printf instead + SHELLCHECK_OPTS: -e SC3043 -e SC2154 -e SC3037 with: severity: warning scandir: "./usr/local/share/bastille"