Ignore errors

This commit is contained in:
Kevin Sawicki
2014-11-18 10:33:56 -08:00
parent c9a9b51238
commit b8a263c570

View File

@@ -46,11 +46,11 @@ installContextMenu = (callback) ->
installFileMenu = ->
args = [fileKeyPath, '/ve', '/d', 'Open with Atom', '/f']
spawnReg args, (error) ->
return callback(error) if error?
# return callback(error) if error?
args = [fileKeyPath, '/v', 'Icon', '/d', process.execPath, '/f']
spawnReg args, (error) ->
return callback(error) if error?
# return callback(error) if error?
args = ["#{fileKeyPath}\\command", '/ve', '/d', process.execPath, '/f']
spawnReg(args, callback)