Skip to content

Commit c215d44

Browse files
committed
fix linter
1 parent 5ee140d commit c215d44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/xmllinter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ 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 }}'")
66+
$("${{ steps.find-xml.outputs.filelist }}") | jq -c '.[]' | while read -r i; do
67+
ignore=$(jq --null-input '["${i}"] - ${{ steps.read-ignore.outputs.ignore }}')
6868
echo "$ignore"
6969
7070
if [ "$ignore" = "[]" ]; then

0 commit comments

Comments
 (0)