Merge pull request #10483 from jublonet/fix-double-downloads

Use Squirrel.Windows --checkForUpdate
This commit is contained in:
Birunthan Mohanathas 2017-09-27 20:26:24 +03:00 committed by GitHub
commit 945fef8a5a
2 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,7 @@ class AutoUpdater extends EventEmitter {
return this.emitError('Can not find Squirrel')
}
this.emit('checking-for-update')
squirrelUpdate.download(this.updateURL, (error, update) => {
squirrelUpdate.checkForUpdate(this.updateURL, (error, update) => {
if (error != null) {
return this.emitError(error)
}

View file

@ -82,8 +82,8 @@ exports.processStart = function () {
}
// Download the releases specified by the URL and write new results to stdout.
exports.download = function (updateURL, callback) {
return spawnUpdate(['--download', updateURL], false, function (error, stdout) {
exports.checkForUpdate = function (updateURL, callback) {
return spawnUpdate(['--checkForUpdate', updateURL], false, function (error, stdout) {
var json, ref, ref1, update
if (error != null) {
return callback(error)