Skip to content

Commit

Permalink
Add single quotes to --scope arg value in lerna list command (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
chalosalvador authored Aug 13, 2024
1 parent bb25de9 commit 3b0b5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const since = process.env.GITHUB_ACTION
const lernaList = JSON.parse(
execSync(
`lerna list --json --include-dependencies --include-dependents ${
packageFromRef ? `--scope={,*/}${packageFromRef}` : since
packageFromRef ? `--scope='{,*/}${packageFromRef}'` : since
}`,
{ stdio: ["ignore", "pipe", "ignore"] },
).toString(),
Expand Down

0 comments on commit 3b0b5c0

Please sign in to comment.