Merge pull request #12 from databus23/patch-1

fix UpdateSelf invocation on custom Updater object
This commit is contained in:
Linda_pp 2018-04-30 21:34:28 +09:00 committed by GitHub
commit 953b97fcd1
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.