File tree Expand file tree Collapse file tree 2 files changed +1
-60
lines changed Expand file tree Collapse file tree 2 files changed +1
-60
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -66,12 +66,6 @@ module.exports.build = function(done) {
66
66
} ) ;
67
67
} ;
68
68
69
- var codesign = function ( done ) {
70
- var cmd = './tasks/darwin-sign-app.sh "' + CONFIG . sign + '" "' + CONFIG . appPath + '"' ;
71
- debug ( 'Running' , cmd ) ;
72
- cp . exec ( cmd , done ) ;
73
- } ;
74
-
75
69
var verify = function ( done ) {
76
70
var cmd = 'codesign --verify "' + CONFIG . appPath + '"' ;
77
71
debug ( 'Running' , cmd ) ;
@@ -83,7 +77,7 @@ module.exports.installer = function(done) {
83
77
var doCodeSign = process . env . SCOUT_INSTALLER_UNSIGNED === undefined ;
84
78
85
79
// TODO: clean up with https://www.npmjs.com/package/run-series ?
86
- if ( ! doCodeSign ) {
80
+ if ( ! doCodeSign ) {
87
81
CONFIG . sign = null ;
88
82
packager ( CONFIG , function ( err ) {
89
83
if ( err ) return done ( err ) ;
You can’t perform that action at this time.
0 commit comments