From e7ad9ae15acacc6b3787139ecd6c81efd9385e79 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 29 Sep 2014 13:22:55 -0700 Subject: [PATCH] Add --deep codesign option for 10.9.5 --- build/tasks/codesign-task.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tasks/codesign-task.coffee b/build/tasks/codesign-task.coffee index d24664c99..f8fab2864 100644 --- a/build/tasks/codesign-task.coffee +++ b/build/tasks/codesign-task.coffee @@ -26,7 +26,7 @@ module.exports = (grunt) -> switch process.platform when 'darwin' cmd = 'codesign' - args = ['-f', '-v', '-s', 'Developer ID Application: GitHub', grunt.config.get('atom.shellAppDir')] + args = ['--deep', '-f', '-v', '-s', 'Developer ID Application: GitHub', grunt.config.get('atom.shellAppDir')] spawn {cmd, args}, (error) -> callback(error) when 'win32' spawn {cmd: 'taskkill', args: ['/F', '/IM', 'atom.exe']}, ->