Update build.js

This commit is contained in:
GeekCorner 2020-12-15 19:40:18 +01:00 committed by GitHub
parent 779a9a54ec
commit 9e48c2e394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,8 @@ builder.build({
},
mac: {
target: 'dmg',
category: 'public.app-category.games'
category: 'public.app-category.games',
artifactName: '${productName}-${version}.${ext}'
},
linux: {
target: 'AppImage',
@ -50,7 +51,8 @@ builder.build({
vendor: 'Daniel Scalzi',
synopsis: 'Modded Minecraft Launcher',
description: 'Custom launcher which allows users to join modded servers. All mods, configurations, and updates are handled automatically.',
category: 'Game'
category: 'Game',
artifactName: '${productName}-${version}-x86_x64.${ext}'
},
compression: 'maximum',
files: [
@ -65,4 +67,4 @@ builder.build({
console.log('Build complete!')
}).catch(err => {
console.error('Error during build!', err)
})
})