signtool is now on the PATH

This commit is contained in:
Kevin Sawicki
2014-07-05 10:07:06 -07:00
parent c59cbb3b25
commit 3c5312e834

View File

@@ -28,7 +28,7 @@ module.exports = (grunt) ->
args = ['-f', '-v', '-s', 'Developer ID Application: GitHub', grunt.config.get('atom.shellAppDir')]
spawn {cmd, args}, (error) -> callback(error)
when 'win32'
cmd = 'C:\\Users\\jenkins\\bin\\signtool.bat'
cmd = 'signtool.bat'
args = [path.join(grunt.config.get('atom.shellAppDir'), 'atom.exe')]
spawn {cmd, args}, (error) -> callback(error)
else