Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
muno92 committed Nov 21, 2023
1 parent 9f2221b commit afd21d0
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 @@ -59,7 +59,7 @@ async function run(): Promise<void> {
const properties: string = core.getInput('properties') ?? ''
properties.replace('"', '\\"')
if (properties) {
command += ` --properties:\\"${properties}\\"`
command += ` --properties:"${properties}"`
}

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

0 comments on commit afd21d0

Please sign in to comment.