Skip to content

Commit 7c1bb8d

Browse files
committed
INT-198 remove now-unneeded darwin-sign-app.sh
1 parent 59e04e5 commit 7c1bb8d

File tree

2 files changed

+1
-60
lines changed

2 files changed

+1
-60
lines changed

tasks/darwin-sign-app.sh

Lines changed: 0 additions & 53 deletions
This file was deleted.

tasks/darwin.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff 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-
7569
var 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);

0 commit comments

Comments
 (0)