Skip to content

Commit

Permalink
Update make-electron-builder-yml.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Sep 27, 2022
1 parent 43e7f0a commit 8cc5391
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions installation/make-electron-builder-yml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,20 @@ let files = [
],

mac: {
target: {
target: ["dmg", "pkg", "zip", "dir"],
arch: ["x64", "arm64"]
},
target: [
{
target: "dmg",
arch: ["x64", "arm64"]
},
{
target: "pkg",
arch: ["x64", "arm64"]
},
{
target: "zip",
arch: ["x64", "arm64"]
}
],
category: "public.app-category.utilities",
bundleVersion: packageJson.version,
icon: "./icon.icns",
Expand Down

0 comments on commit 8cc5391

Please sign in to comment.