Merge pull request #6084 from wolfgang42/master

Fix typo: 'arugments'
This commit is contained in:
Kevin Sawicki
2016-06-16 10:46:58 -07:00
committed by GitHub

View File

@@ -28,7 +28,7 @@ var spawnUpdate = function (args, detached, callback) {
// Process spawned, different args: Return with error
// No process spawned: Spawn new process
if (spawnedProcess && !isSameArgs(args)) {
return callback('AutoUpdater process with arugments ' + args + ' is already running')
return callback('AutoUpdater process with arguments ' + args + ' is already running')
} else if (!spawnedProcess) {
spawnedProcess = spawn(updateExe, args, {
detached: detached