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.
2014-05-02 10:01:09 +02:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
2014-05-02 20:19:21 +02:00
|
|
|
import "errors"
|
|
|
|
|
|
|
|
|
|
func upgrade() error {
|
|
|
|
|
return errors.New("Upgrade currently unsupported on Windows")
|
2014-05-02 10:01:09 +02:00
|
|
|
}
|