Co-authored-by: nnyyxxxx <nnyyxxxx@users.noreply.github.com>
This commit is contained in:
Nyx 2024-09-20 00:00:11 -04:00 committed by GitHub
parent 0378410187
commit 6a1df3c3a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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