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: {
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}`);
}