syncthing/lib/upgrade/upgrade_unsupp.go

25 lines
659 B
Go
Raw Normal View History

2014-11-16 21:13:20 +01:00
// Copyright (C) 2014 The Syncthing Authors.
2014-09-29 21:43:32 +02:00
//
2015-03-07 21:36:35 +01: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 16:01:23 +02:00
//go:build noupgrade
2014-09-28 23:10:43 +02:00
// +build noupgrade
2014-07-31 16:01:23 +02:00
package upgrade
const DisabledByCompilation = true
2014-12-22 12:07:04 +01:00
func upgradeTo(binary string, rel Release) error {
return ErrUpgradeUnsupported
}
func upgradeToURL(archiveName, binary, url string) error {
2014-07-31 17:11:53 +02:00
return ErrUpgradeUnsupported
2014-07-31 16:01:23 +02:00
}
func LatestRelease(releasesURL, current string, upgradeToPreRelease bool) (Release, error) {
2014-07-31 16:01:23 +02:00
return Release{}, ErrUpgradeUnsupported
}