Skip to content

Commit

Permalink
fix filename quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbudd committed Sep 19, 2024
1 parent e994313 commit 05e52f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/validateAllAddons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ jobs:
- name: Normalize JSON files with jq
shell: bash
run: |
for file in $(find ./addons -name '*.json'); do
jq --tab . "$file" > "$file.tmp"
mv "$file.tmp" "$file"
for file in ./addons/*/*.json; do
jq --tab . "${file}" > "${file}.tmp"
mv "${file}.tmp" "${file}"
done
- name: Create PR for normalizing files
if: always()
Expand Down

0 comments on commit 05e52f9

Please sign in to comment.