This repository has been archived on 2026-08-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2014-06-16 09:52:14 +02:00
|
|
|
// +build windows solaris
|
|
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
|
|
func upgrade() error {
|
|
|
|
|
return errors.New("Upgrade currently unsupported on Windows")
|
|
|
|
|
}
|