Skip to content

Commit 0395000

Browse files
fix: set shellcheck severity threshold to warning in CI
SC1091 (cannot follow sourced paths), SC2012 (ls in glob for kernel package filenames), and SC2016 (literal $ in Makefile heredoc) are info-level false positives that do not represent real bugs. Use -S warning so only genuine warnings and errors fail the build. Co-authored-by: Ona <no-reply@ona.com>
1 parent 6828418 commit 0395000

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Lint
3232
run: |
3333
find . -name '*.sh' ! -path './.cache/*' ! -path './kernel/src/*' \
34-
-exec shellcheck -x {} +
34+
-exec shellcheck -x -S warning {} +
3535
3636
build-matrix:
3737
name: Build (${{ matrix.distro }} / ${{ matrix.mode }})

0 commit comments

Comments
 (0)