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,
|
2017-02-08 23:52:18 -07:00
|
|
|
// You can obtain one at https://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
|
|
|
|
|
2015-09-06 07:36:09 -07:00
|
|
|
const DisabledByCompilation = true
|
|
|
|
|
2014-12-22 04:07:04 -07:00
|
|
|
func upgradeTo(binary string, rel Release) error {
|
|
|
|
return ErrUpgradeUnsupported
|
|
|
|
}
|
|
|
|
|
2016-05-06 06:30:35 -07:00
|
|
|
func upgradeToURL(archiveName, binary, url string) error {
|
2014-07-31 08:11:53 -07:00
|
|
|
return ErrUpgradeUnsupported
|
2014-07-31 07:01:23 -07:00
|
|
|
}
|
|
|
|
|
2017-01-27 05:17:06 -07:00
|
|
|
func LatestRelease(releasesURL, current string, upgradeToPreRelease bool) (Release, error) {
|
2014-07-31 07:01:23 -07:00
|
|
|
return Release{}, ErrUpgradeUnsupported
|
|
|
|
}
|