Skip to content

Commit 81655a7

Browse files
committed
type " instead of '
1 parent 7e985b1 commit 81655a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ runs:
100100
DIKTAT_ARGS=('--config' '${{ inputs.config }}' '--reporter' '${{ inputs.reporter }}')
101101
if [[ '${{ inputs.reporter }}' == 'sarif' ]]
102102
then
103-
DIKTAT_ARGS+=('--output' '${GITHUB_WORKSPACE}/report.sarif')
103+
DIKTAT_ARGS+=('--output' "${GITHUB_WORKSPACE}/report.sarif")
104104
elif [[ '${{ inputs.reporter }}' == 'checkstyle' ]]
105105
then
106-
DIKTAT_ARGS+=('--output' '${GITHUB_WORKSPACE}/checkstyle-report.xml')
106+
DIKTAT_ARGS+=('--output' "${GITHUB_WORKSPACE}/checkstyle-report.xml")
107107
else
108108
echo "`reporter` should be set to `sarif` or `checkstyle`"
109109
exit 1

0 commit comments

Comments
 (0)