Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
trim whitespace in args if needed
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHodgson authored Mar 21, 2022
1 parent 3f25efd commit 4875c39
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 @@ -29,7 +29,7 @@ runs:
$editorPath = "${{ inputs.editor-path }}"
$projectPath = "${{ inputs.project-path }}"
$bulidTarget = "${{ inputs.build-target }}"
$additionalArgs = "${{ inputs.args }}"
$additionalArgs = "${{ inputs.args }}".Trim()
$name = "${{ inputs.name }}"
$buildTargetArgs = ""
Expand Down

0 comments on commit 4875c39

Please sign in to comment.