Skip to content

Commit 5ee140d

Browse files
committed
fix linter
1 parent 0a96c18 commit 5ee140d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.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 -r 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)