From d1e0102622917e2ebb614d0caa5b735f7dfb2e78 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 23 Aug 2019 10:33:45 +0000 Subject: [PATCH] CI: Fix issues --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 131c0159..5c6fb9b8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,4 +10,6 @@ jobs: steps: - uses: actions/checkout@v1 - name: Run shellcheck. - run: shellcheck -e 2034 */*/build */*/post-install + run: | + shopt -s nullglob + shellcheck -e 2034 */*/build */*/post-install