Merge pull request #1830 from Bilb/fix-build-scripts

fix script appimage
pull/1831/head
Audric Ackermann 4 years ago committed by GitHub
commit 85db5f2891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,7 +10,8 @@ module.exports = async function(context) {
if (process.platform !== 'linux') {
return;
}
const isAppImage = context.targets.name === 'appImage';
const isAppImage =
context.targets.name === 'appImage' || context.targets.some(e => e.name === 'appImage');
console.log(
'targets',
context.targets.map(target => target.name)

Loading…
Cancel
Save