Merge pull request #1831 from oxen-io/clearnet

Fix script app image
pull/1998/head v1.6.10
Audric Ackermann 4 years ago committed by GitHub
commit 30aa1b5eed
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