Skip to content

Commit e571d8d

Browse files
committed
fix linter
1 parent 6de2df7 commit e571d8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/xmllinter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ jobs:
6363
- name: Lint XML
6464
id: linter
6565
run: |
66-
echo $("${{ steps.find-xml.outputs.filelist }}") | jq -c '.[]' | while read i; do
67-
ignore="$(jq --null-input '["${i}"] - ${{ steps.read-ignore.outputs.ignore }}')"
68-
echo "$(jq --null-input '["${i}"] - ${{ steps.read-ignore.outputs.ignore }}')"
66+
echo '${{ steps.find-xml.outputs.filelist }}' | jq -c '.[]' | while read -r i; do
67+
ignore=$(jq --null-input '["${i}"] - ${{ steps.read-ignore.outputs.ignore }}')
68+
echo "$ignore"
6969
7070
if [ "$ignore" = "[]" ]; then
7171
echo "Skipping ${i}"

0 commit comments

Comments
 (0)