Skip to content

Commit 3b0b5c0

Browse files
Add single quotes to --scope arg value in lerna list command (#245)
1 parent bb25de9 commit 3b0b5c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/github.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const since = process.env.GITHUB_ACTION
1313
const lernaList = JSON.parse(
1414
execSync(
1515
`lerna list --json --include-dependencies --include-dependents ${
16-
packageFromRef ? `--scope={,*/}${packageFromRef}` : since
16+
packageFromRef ? `--scope='{,*/}${packageFromRef}'` : since
1717
}`,
1818
{ stdio: ["ignore", "pipe", "ignore"] },
1919
).toString(),

0 commit comments

Comments
 (0)