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) {
6666 } ) ;
6767} ;
6868
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-
7569var verify = function ( done ) {
7670 var cmd = 'codesign --verify "' + CONFIG . appPath + '"' ;
7771 debug ( 'Running' , cmd ) ;
@@ -83,7 +77,7 @@ module.exports.installer = function(done) {
8377 var doCodeSign = process . env . SCOUT_INSTALLER_UNSIGNED === undefined ;
8478
8579 // TODO: clean up with https://www.npmjs.com/package/run-series ?
86- if ( ! doCodeSign ) {
80+ if ( ! doCodeSign ) {
8781 CONFIG . sign = null ;
8882 packager ( CONFIG , function ( err ) {
8983 if ( err ) return done ( err ) ;
You can’t perform that action at this time.
0 commit comments