File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const {notarize} = require('electron-notarize');
2
2
3
3
const notarizeMacBuild = async function ( context ) {
4
4
// keep this in sync with appId in the electron-builder config
5
- const appId = 'edu.mit.scratch.scratch -desktop' ;
5
+ const appId = 'jp.smalruby.smalruby3 -desktop' ;
6
6
7
7
if ( ! process . env . AC_USERNAME ) {
8
8
throw new Error (
@@ -34,7 +34,6 @@ const afterSign = async function (context) {
34
34
case 'mas' : // macOS build for Mac App Store
35
35
break ;
36
36
case 'darwin' : // macOS build NOT for Mac App Store
37
- await notarizeMacBuild ( context ) ;
38
37
break ;
39
38
}
40
39
} ;
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ const calculateTargets = function () {
82
82
// Running 'dmg' and 'mas' in the same pass causes electron-builder to skip signing the non-MAS app copy.
83
83
// Running them as separate passes means they both get signed.
84
84
// Seems like a bug in electron-builder...
85
- return [ 'dmg' , 'mas' ] ;
85
+ return [ 'dmg' ] ;
86
86
}
87
87
throw new Error ( `Could not determine targets for platform: ${ process . platform } ` ) ;
88
88
} ;
You can’t perform that action at this time.
0 commit comments