2014-11-16 13:13:20 -07:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 12:43:32 -07:00
|
|
|
//
|
2015-03-07 13:36:35 -07: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 http://mozilla.org/MPL/2.0/.
|
2014-07-31 07:01:23 -07:00
|
|
|
|
2014-09-28 14:10:43 -07:00
|
|
|
// +build noupgrade
|
2014-07-31 07:01:23 -07:00
|
|
|
|
|
|
|
package upgrade
|
|
|
|
|
2014-12-22 04:07:04 -07:00
|
|
|
func upgradeTo(binary string, rel Release) error {
|
|
|
|
return ErrUpgradeUnsupported
|
|
|
|
}
|
|
|
|
|
|
|
|
func upgradeToURL(binary, url string) error {
|
2014-07-31 08:11:53 -07:00
|
|
|
return ErrUpgradeUnsupported
|
2014-07-31 07:01:23 -07:00
|
|
|
}
|
|
|
|
|
2015-04-09 13:44:36 -07:00
|
|
|
func LatestRelease(version string) (Release, error) {
|
2014-07-31 07:01:23 -07:00
|
|
|
return Release{}, ErrUpgradeUnsupported
|
|
|
|
}
|