We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d0f0f commit 7c6c412Copy full SHA for 7c6c412
eng/tsp-core/pkg-pr-new.ts
@@ -17,9 +17,10 @@ const modifiedPaths = paths.filter((x) => files.some((f) => f.startsWith(x)));
17
// eslint-disable-next-line no-console
18
console.log("Packages", { all: paths, modified: modifiedPaths });
19
try {
20
- execSync(`pnpx pkg-pr-new publish '${modifiedPaths.join(" ")}' --pnpm`, {
+ execSync(`pnpx pkg-pr-new publish ${modifiedPaths.map((x) => `'${x}'`).join(" ")} --pnpm`, {
21
stdio: "inherit",
22
encoding: "utf-8",
23
+ cwd: repoRoot,
24
});
25
} catch (e: any) {
26
0 commit comments