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.
2 parents 44eee08 + 8ffdb65 commit 9f017b7Copy full SHA for 9f017b7
scripts/electron-builder-wrapper.js
@@ -47,7 +47,8 @@ const runBuilder = function (targetGroup) {
47
const shouldStripCSC = (targetGroup === 'appx');
48
const childEnvironment = shouldStripCSC ? stripCSC(process.env) : process.env;
49
if ((targetGroup === 'nsis') && !(childEnvironment.CSC_LINK || childEnvironment.WIN_CSC_LINK)) {
50
- throw new Error(`NSIS build requires CSC_LINK or WIN_CSC_LINK`);
+ // throw new Error(`NSIS build requires CSC_LINK or WIN_CSC_LINK`);
51
+ console.error(`NSIS build requires CSC_LINK or WIN_CSC_LINK`);
52
}
53
const platformFlag = getPlatformFlag();
54
const command = `electron-builder ${platformFlag} ${targetGroup}`;
0 commit comments