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 http://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
|
|
|
|
|
2015-09-06 14:36:09 +00:00
|
|
|
const DisabledByCompilation = true
|
|
|
|
|
2014-12-22 11:07:04 +00:00
|
|
|
func upgradeTo(binary string, rel Release) error {
|
|
|
|
return ErrUpgradeUnsupported
|
|
|
|
}
|
|
|
|
|
|
|
|
func upgradeToURL(binary, url string) error {
|
2014-07-31 15:11:53 +00:00
|
|
|
return ErrUpgradeUnsupported
|
2014-07-31 14:01:23 +00:00
|
|
|
}
|
|
|
|
|
2015-09-13 09:48:45 +00:00
|
|
|
func LatestRelease(releasesURL, version string) (Release, error) {
|
2014-07-31 14:01:23 +00:00
|
|
|
return Release{}, ErrUpgradeUnsupported
|
|
|
|
}
|