nw-builder 4.2.5 → 4.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/bld/build.js +1 -1
- package/src/bld/winCfg.js +1 -1
package/package.json
CHANGED
package/src/bld/build.js
CHANGED
|
@@ -32,7 +32,7 @@ export const build = async (
|
|
|
32
32
|
log.debug(`Remove any files at ${outDir} directory`);
|
|
33
33
|
await rm(outDir, { force: true, recursive: true });
|
|
34
34
|
log.debug(`Copy ${nwDir} files to ${outDir} directory`);
|
|
35
|
-
await cp(nwDir, outDir, { recursive: true });
|
|
35
|
+
await cp(nwDir, outDir, { recursive: true, verbatimSymlinks: true });
|
|
36
36
|
|
|
37
37
|
log.debug(`Copy files in srcDir to ${outDir} directory`);
|
|
38
38
|
|
package/src/bld/winCfg.js
CHANGED
|
@@ -64,7 +64,7 @@ const setWinConfig = async (app, outDir) => {
|
|
|
64
64
|
});
|
|
65
65
|
} catch (error) {
|
|
66
66
|
log.warn(
|
|
67
|
-
"Renaming EXE failed or unable to modify EXE. If it's the latter, ensure WINE is installed or build
|
|
67
|
+
"Renaming EXE failed or unable to modify EXE. If it's the latter, ensure WINE is installed or build your application Windows platform"
|
|
68
68
|
);
|
|
69
69
|
log.error(error);
|
|
70
70
|
}
|