Skip to content

Commit

Permalink
Merge pull request #437 from muno92/fix-properties-option
Browse files Browse the repository at this point in the history
Fix properties option
  • Loading branch information
muno92 authored Nov 21, 2023
2 parents 2cd06ee + c025560 commit 8e41dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async function run(): Promise<void> {

const properties: string = core.getInput('properties') ?? ''
if (properties) {
command += ` "--properties:${properties}"`
command += ` --properties:"${properties}"`
}

const workingDir: string = core.getInput('workingDirectory')
Expand Down

0 comments on commit 8e41dcb

Please sign in to comment.