This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
syncthing-arm/cmd/syncthing/upgrade_unsupp.go
T
2014-06-16 10:19:32 +02:00

10 lines
146 B
Go

// +build windows solaris
package main
import "errors"
func upgrade() error {
return errors.New("Upgrade currently unsupported on Windows")
}