Skip to content

Commit

Permalink
Merge pull request #434 from muno92/fix-option-properties
Browse files Browse the repository at this point in the history
Enable use double quote in properties option
  • Loading branch information
muno92 authored Nov 21, 2023
2 parents c365508 + 6ee16cc commit 2c50fc1
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 2c50fc1

Please sign in to comment.