Use full path to signtool.bat

This commit is contained in:
Kevin Sawicki 2014-07-03 13:45:18 -07:00
parent b3da11edfb
commit c59cbb3b25

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 = 'signtool'
cmd = 'C:\\Users\\jenkins\\bin\\signtool.bat'
args = [path.join(grunt.config.get('atom.shellAppDir'), 'atom.exe')]
spawn {cmd, args}, (error) -> callback(error)
else