Skip to content

Commit

Permalink
fix build icon and binary name
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Feb 26, 2024
1 parent 03d1e98 commit 541435d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,21 @@
"private": true,
"build": {
"appId": "com.olas.operate",
"productName": "Operate",
"productName": "Operate App",
"directories": {
"output": "dist"
},
"win": {
"target": "nsis"
"target": "nsis",
"icon": "electron/assets/icons/robot-head.png"
},
"mac": {
"target": "dmg"
"target": "dmg",
"icon": "electron/assets/icons/robot-head.png"
},
"linux": {
"target": "AppImage"
"target": "AppImage",
"icon": "electron/assets/icons/robot-head.png"
}
},
"scripts": {
Expand Down

0 comments on commit 541435d

Please sign in to comment.