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 d249fa5 commit dcf913fCopy full SHA for dcf913f
packages/target-electron/build/afterPackHook.mjs
@@ -104,7 +104,9 @@ export default async context => {
104
// asar is electrons archive format, flatpak doesn't use it. read more about what asar is on https://www.electronjs.org/docs/latest/glossary#asar
105
const asar = env['NO_ASAR'] ? false : true
106
await copyMapXdc(resources_dir, source_dir, asar)
107
- await setFuses(context)
+ if (!env['SKIP_FUSES']) {
108
+ await setFuses(context)
109
+ }
110
}
111
112
async function packageMSVCRedist(context) {
0 commit comments