Fix -no-upgrade

This commit is contained in:
Jakob Borg 2015-09-13 11:48:45 +02:00
parent 8e5c692244
commit e6d5372029
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ func upgradeToURL(binary, url string) error {
return ErrUpgradeUnsupported
}
func LatestRelease(version string) (Release, error) {
func LatestRelease(releasesURL, version string) (Release, error) {
return Release{}, ErrUpgradeUnsupported
}