Skip to content

Commit

Permalink
Merge pull request #454 from hwinther-tietoevry/patch-1
Browse files Browse the repository at this point in the history
Add double quote to include parameter
  • Loading branch information
muno92 authored Feb 6, 2024
2 parents acada41 + af8b042 commit d555c73
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 @@ -17,7 +17,7 @@ async function run(): Promise<void> {

const include: string = core.getInput('include')
if (include) {
command += ` --include=${include.trim().replace(/[\r\n]+/g, ';')}`
command += ` --include="${include.trim().replace(/[\r\n]+/g, ';')}"`
}

const exclude = core.getInput('exclude') ?? ''
Expand Down

0 comments on commit d555c73

Please sign in to comment.