File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 18
18
"package" : " npm run pack-mac && npm run pack-win && npm run pack-linux" ,
19
19
"installer" : " node ./script/installer.js" ,
20
20
"windows-store" : " node ./script/windows-store.js" ,
21
- "mas" : " electron-packager . --asar --overwrite --platform=mas --arch=x64 --icon=assets/app-icon/mac/app.icns --prune=true --out=out --osx-sign.identity='Developer ID Application: GitHub' --extend-info=assets/mac/info.plist " ,
21
+ "mas" : " ./script/mas.sh " ,
22
22
"prepare-release" : " npm run package && npm run sign-exe && npm run installer && npm run sign-installer" ,
23
23
"release" : " node ./script/release.js"
24
24
},
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ set -ex
4
+
5
+ electron-packager . \
6
+ --asar \
7
+ --overwrite \
8
+ --platform=mas \
9
+ --arch=x64 \
10
+ --icon=assets/app-icon/mac/app.icns \
11
+ --prune=true \
12
+ --out=out \
13
+ --extend-info=assets/mac/info.plist
14
+
3
15
# Name of your app.
4
16
APP=" Electron API Demos"
5
17
You can’t perform that action at this time.
0 commit comments