Skip to content

Commit c124a46

Browse files
committed
fix linter
fix linter fix linter fix linter
1 parent b89fdd6 commit c124a46

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+
"${{ 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)