syncthing/lib/upgrade/upgrade_unsupp.go

24 lines
638 B
Go
Raw Normal View History

2014-11-16 20:13:20 +00:00
// Copyright (C) 2014 The Syncthing Authors.
2014-09-29 19:43:32 +00:00
//
2015-03-07 20:36:35 +00:00
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.
2014-07-31 14:01:23 +00:00
2014-09-28 21:10:43 +00:00
// +build noupgrade
2014-07-31 14:01:23 +00:00
package upgrade
const DisabledByCompilation = true
2014-12-22 11:07:04 +00:00
func upgradeTo(binary string, rel Release) error {
return ErrUpgradeUnsupported
}
func upgradeToURL(archiveName, binary, url string) error {
2014-07-31 15:11:53 +00:00
return ErrUpgradeUnsupported
2014-07-31 14:01:23 +00:00
}
func LatestRelease(releasesURL, current string, upgradeToPreRelease bool) (Release, error) {
2014-07-31 14:01:23 +00:00
return Release{}, ErrUpgradeUnsupported
}