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.
Files
syncthing-arm/cmd/syncthing/upgrade_unsupp.go
T
2014-07-31 11:47:00 +02:00

12 lines
203 B
Go

// +build windows solaris noupgrade
package main
func upgrade() error {
return errUpgradeUnsupported
}
func currentRelease() (githubRelease, error) {
return githubRelease{}, errUpgradeUnsupported
}