Skip to content

Commit

Permalink
bug fix - wrap string in quotes for PS expression
Browse files Browse the repository at this point in the history
  • Loading branch information
jimkring committed Jul 28, 2022
1 parent 986e38b commit ccd464c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ runs:
}
$plugins = ("${{ inputs.enable-plugins }}" -split '\s*,\s*')
foreach ($plugin in $plugins) {
$args += @('--enable-plugin=${plugin}');
$args += @("--enable-plugin=$plugin");
}
if ("${{ inputs.output-file }}" -ne ''){
$args += @('-o', '${{ inputs.output-file }}')
Expand Down

0 comments on commit ccd464c

Please sign in to comment.