From 6a1df3c3a97c1e60851c643449c6934a3a1f80b7 Mon Sep 17 00:00:00 2001 From: Nyx <144965845+nnyyxxxx@users.noreply.github.com> Date: Fri, 20 Sep 2024 00:00:11 -0400 Subject: [PATCH] Fix (#556) Co-authored-by: nnyyxxxx --- .github/workflows/bashisms.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bashisms.yml b/.github/workflows/bashisms.yml index 16e8a015..d4d1490f 100644 --- a/.github/workflows/bashisms.yml +++ b/.github/workflows/bashisms.yml @@ -25,7 +25,7 @@ jobs: - name: Check for bashisms in changed files run: | for file in $(git diff --name-only origin/${{ github.base_ref }} HEAD core/tabs); do - if [[ "$file" == *.sh ]] && [[ -f "$file" ]];; then + if [[ "$file" == *.sh ]] && [[ -f "$file" ]]; then checkbashisms "$file" fi done