Merge pull request #1856 from tnajdek/fix-windows-build
Fix build on Windows
This commit is contained in:
commit
0cf27b9b7e
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ async function getSymlinks(source, options, signatures) {
|
|||
const dest = path.join('build', f);
|
||||
try {
|
||||
if (isWindows) {
|
||||
await fs.copy(f, dest);
|
||||
await fs.copy(f, dest, { dereference: true });
|
||||
} else {
|
||||
await fs.ensureSymlink(f, dest);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue