Skip to content

Commit

Permalink
fixed builder config
Browse files Browse the repository at this point in the history
  • Loading branch information
wuynng committed Jun 6, 2018
1 parent 47cb095 commit b0e9903
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions quasar.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,13 @@ module.exports = function (ctx) {
mac: {
category: 'public.app-category.productivity',
icon: 'src-electron/icons/icon.icns',
target: [
{ target: 'dmg', arch: 'x64' }
],
artifactName: '${productName}-${os}-${platform}-${arch}-${version}.${ext}'
target: 'dmg',
artifactName: '${productName}-macosx-${version}.${ext}'
},
win: {
icon: 'src-electron/icons/icon.ico',
target: [
{ target: 'nsis', arch: 'x64' }
],
artifactName: '${productName}-${os}-${platform}-${arch}-${version}.${ext}'
target: 'nsis',
artifactName: '${productName}-${platform}-x64-${version}.${ext}'
}
}
},
Expand Down

0 comments on commit b0e9903

Please sign in to comment.