From 9f1ffeee25c51d916628458c6dd920820b969145 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Nov 2014 08:43:39 -0800 Subject: [PATCH] Sign AtomSetup.exe --- 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 82ed5701c..1c79ae14c 100644 --- a/build/tasks/codesign-task.coffee +++ b/build/tasks/codesign-task.coffee @@ -36,7 +36,7 @@ module.exports = (grunt) -> spawn {cmd, args}, (error) -> return callback(error) if error? - setupExePath = path.join(grunt.config.get('atom.shellAppDir'), '..', 'Releases', 'setup.exe') + setupExePath = path.join(grunt.config.get('atom.shellAppDir'), '..', 'installer', 'AtomSetup.exe') if fs.isFileSync(setupExePath) args = [setupExePath] spawn {cmd, args}, (error) -> callback(error)