We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6de2df7 commit b89fdd6Copy full SHA for b89fdd6
1 file changed
.github/workflows/xmllinter.yml
@@ -64,8 +64,8 @@ jobs:
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 }}')"
+ ignore=$("jq --null-input '["${i}"] - ${{ steps.read-ignore.outputs.ignore }}'")
+ echo $("jq --null-input '["${i}"] - ${{ steps.read-ignore.outputs.ignore }}'")
69
70
if [ "$ignore" = "[]" ]; then
71
echo "Skipping ${i}"
0 commit comments