From 8bbc40c2b656903287181706402a7b2c1d6fd269 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Fri, 14 Oct 2022 09:14:30 -0700 Subject: [PATCH] nullglob --- .github/actions/clang-format/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/clang-format/action.yml b/.github/actions/clang-format/action.yml index 64f3bed0..6e0e50ad 100644 --- a/.github/actions/clang-format/action.yml +++ b/.github/actions/clang-format/action.yml @@ -20,4 +20,5 @@ runs: shell: bash run: | shopt -s globstar - clang-format-${{ inputs.version }} --dry-run --Werror **/*.cpp **/*.h **/*.m **/*.mm + shopt -s nullglob + clang-format-${{ inputs.version }} --dry-run --Werror **/*.cpp **/*. **/*.m **/*.mm