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

Commit 4875c39

Browse files
trim whitespace in args if needed
1 parent 3f25efd commit 4875c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
$editorPath = "${{ inputs.editor-path }}"
3030
$projectPath = "${{ inputs.project-path }}"
3131
$bulidTarget = "${{ inputs.build-target }}"
32-
$additionalArgs = "${{ inputs.args }}"
32+
$additionalArgs = "${{ inputs.args }}".Trim()
3333
$name = "${{ inputs.name }}"
3434
$buildTargetArgs = ""
3535

0 commit comments

Comments
 (0)