commit 0cd581f44ee8f95f7a99ad3e4c5b35cb956c04fe parent 734e970e5be79267dd5251cd1a492d7f4049f935 Author: aabacchus <ben@bvnf.space> Date: Mon, 24 Jan 2022 13:49:27 +0000 fix shellcheck Diffstat:
M | .github/workflows/main.yml | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml @@ -7,4 +7,4 @@ jobs: - uses: actions/checkout@v2 - name: Run shellcheck run: | - find . -name build -or -name post-install -exec shellcheck {} + + find . -type f -name build -o -name post-install | sed 's/[^[:alnum:]]/\\&/g' | xargs shellcheck