This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2014-07-14 10:45:29 +02:00
|
|
|
// +build windows solaris noupgrade
|
2014-06-16 09:52:14 +02:00
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
func upgrade() error {
|
2014-07-14 10:45:29 +02:00
|
|
|
return errUpgradeUnsupported
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func currentRelease() (githubRelease, error) {
|
|
|
|
|
return githubRelease{}, errUpgradeUnsupported
|
2014-06-16 09:52:14 +02:00
|
|
|
}
|