Skip to content

Commit e45348e

Browse files
committed
fix: add missing quotes
1 parent 174a805 commit e45348e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# xsltproc --xinclude XSLTLint.xslt $INPUT_XSLT_FILE >> ${{ runner.temp }}/report.txt
2+
# cat ${{ runner.temp }}/report.txt >> "$GITHUB_OUTPUT"
13
name: 'XSLT Linter'
24
description: 'Check an XSLT stylesheet for some common mistakes'
35
inputs:
@@ -10,7 +12,8 @@ runs:
1012
- name: Check file
1113
id: linting
1214
shell: bash
13-
run: xsltproc --xinclude XSLTLint.xslt $INPUT_XSLT_FILE | echo "report=$@" >> $GITHUB_OUTPUT
15+
run: |
16+
xsltproc --xinclude XSLTLint.xslt $INPUT_XSLT_FILE | echo "report=$@" >> "$GITHUB_OUTPUT"
1417
env:
1518
INPUT_XSLT_FILE: ${{ inputs.xslt-file }}
1619
- name: Report linting status

0 commit comments

Comments
 (0)