From ea75636e4478a2e3737e5fe863fefd8323328a84 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 29 Sep 2014 13:26:36 -0700 Subject: [PATCH] Use long options --- 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 f8fab2864..82ed5701c 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 = ['--deep', '-f', '-v', '-s', 'Developer ID Application: GitHub', grunt.config.get('atom.shellAppDir')] + args = ['--deep', '--force', '--verbose', '--sign', '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']}, ->