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 d0c57f6 commit 40166a1Copy full SHA for 40166a1
scripts/tools/cherry-pick.ts
@@ -33,7 +33,7 @@ const isFile = (path: string) =>
33
.catch(() => false);
34
35
const withDefaults = ({ cwd = ".", ...options }: Option, additionalDefaults: { cjsDir?: string; esmDir?: string } = {}): Option => ({
36
- cwd: path.resolve(process.cwd(), cwd),
+ cwd: path.join(process.cwd(), cwd),
37
...additionalDefaults,
38
...options,
39
});
0 commit comments