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 924c68c commit e2fbe19Copy full SHA for e2fbe19
scripts/produceLKG.ts
@@ -90,7 +90,7 @@ async function copyFromBuiltLocal(fileName: string) {
90
}
91
92
async function copyFilesWithGlob(pattern: string) {
93
- const files = glob.sync(path.join(source, pattern)).map(f => path.basename(f));
+ const files = glob.sync(pattern, { cwd: source }).map(f => path.basename(f));
94
for (const f of files) {
95
await copyFromBuiltLocal(f);
96
0 commit comments