diff --git a/scripts/electron-builder-wrapper.js b/scripts/electron-builder-wrapper.js index 303a374..a693df9 100644 --- a/scripts/electron-builder-wrapper.js +++ b/scripts/electron-builder-wrapper.js @@ -117,6 +117,10 @@ const calculateTargets = function (wrapperConfig) { windowsDirectDownload: { name: 'nsis:ia32', platform: 'win32' + }, + linuxAppImage: { + name: 'appImage', + platform: 'linux' } }; const targets = []; @@ -145,6 +149,9 @@ const calculateTargets = function (wrapperConfig) { } targets.push(availableTargets.macDirectDownload); break; + case 'linux': + targets.push(availableTargets.linuxAppImage); + break; default: throw new Error(`Could not determine targets for platform: ${process.platform}`); }