Skip to content

Commit

Permalink
fix: wrap args in double quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
willgeorgetaylor committed Dec 29, 2023
1 parent 98ec283 commit 38cf6a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export async function run(): Promise<void> {

const inputs = enumerateInputs()
const args: string[] = Object.entries(inputs).map(
([key, value]) => `--${key}='${value}'`
([key, value]) => `--${key}="${value}"`
)

core.startGroup(`Running junit-reducer with arguments: `)
Expand Down

0 comments on commit 38cf6a9

Please sign in to comment.