Don't copy DLLs

This commit is contained in:
Michael Shilman 2020-11-02 07:06:20 +08:00
parent 3f03d5c75f
commit 3145260e71

View File

@ -185,8 +185,6 @@ export async function buildStaticStandalone(options) {
if (prebuiltDir) { if (prebuiltDir) {
await cpy('**', outputDir, { cwd: prebuiltDir, parents: true }); await cpy('**', outputDir, { cwd: prebuiltDir, parents: true });
} else { } else {
logger.info(`=> Copying prebuilt dll's..`);
await cpy(path.join(__dirname, '../../dll/*'), path.join(outputDir, 'sb_dll'));
await buildManager(configType, outputDir, configDir, options); await buildManager(configType, outputDir, configDir, options);
} }