🎨 Fix typo: 'arugments'

This commit is contained in:
Wolfgang 2016-06-16 13:41:45 -04:00 committed by GitHub
parent 97dd71d79e
commit b349c381fa

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