We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b89fdd6 commit c124a46Copy full SHA for c124a46
.github/workflows/xmllinter.yml
@@ -63,9 +63,9 @@ jobs:
63
- name: Lint XML
64
id: linter
65
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 }}'")
+ "${{ steps.find-xml.outputs.filelist }}" | jq -c '.[]' | while read -r i; do
+ ignore=$(jq --null-input '["${i}"] - ${{ steps.read-ignore.outputs.ignore }}')
+ echo "$ignore"
69
70
if [ "$ignore" = "[]" ]; then
71
echo "Skipping ${i}"
0 commit comments