This commit is contained in:
Martin Pärtel 2025-04-24 17:51:57 -04:00 committed by GitHub
commit 1d8253bd4e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -117,6 +117,10 @@ const calculateTargets = function (wrapperConfig) {
windowsDirectDownload: { windowsDirectDownload: {
name: 'nsis:ia32', name: 'nsis:ia32',
platform: 'win32' platform: 'win32'
},
linuxAppImage: {
name: 'appImage',
platform: 'linux'
} }
}; };
const targets = []; const targets = [];
@ -145,6 +149,9 @@ const calculateTargets = function (wrapperConfig) {
} }
targets.push(availableTargets.macDirectDownload); targets.push(availableTargets.macDirectDownload);
break; break;
case 'linux':
targets.push(availableTargets.linuxAppImage);
break;
default: default:
throw new Error(`Could not determine targets for platform: ${process.platform}`); throw new Error(`Could not determine targets for platform: ${process.platform}`);
} }