Skip to content

Commit

Permalink
Merge pull request #432 from muno92/fix-427
Browse files Browse the repository at this point in the history
Fix properties parameter
  • Loading branch information
muno92 authored Nov 20, 2023
2 parents 61c3e56 + 734e879 commit c2ecb16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ You can use a semicolon to separate multiple properties `--properties:prop1=val1
Example:

```text
--properties:Platform=x64;Configuration=Debug
Platform=x64;Configuration=Debug
```

## Usage
Expand Down
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 c2ecb16

Please sign in to comment.