fix UpdateSelf invocation on custom Updater object

This commit is contained in:
Fabian Ruff 2018-04-27 16:07:51 +02:00 committed by GitHub
parent ef42c4e258
commit d1140d3bf8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ func (up *Updater) UpdateSelf(current semver.Version, slug string) (*Release, er
if err != nil {
return nil, err
}
return UpdateCommand(cmdPath, current, slug)
return up.UpdateCommand(cmdPath, current, slug)
}
// UpdateTo downloads an executable from assetURL and replace the current binary with the downloaded one.