Allow installer build to be skipped by the packager

This commit is contained in:
Mr. Stallion 2019-07-15 12:15:37 -05:00
parent 6183acc30a
commit d2d21db042
1 changed files with 4 additions and 0 deletions

View File

@ -76,6 +76,10 @@ require('electron-packager')({
osxSign: process.argv.length > 2 ? {identity: process.argv[2]} : false,
prune: false
}).then((appPaths) => {
if (process.env.SKIP_INSTALLER) {
return;
}
if(process.platform === 'win32') {
console.log('Creating Windows installer');
const icon = path.join(__dirname, 'build', 'icon.ico');