Files
go-worm/lib/update/deploy_stub.go
T

10 lines
168 B
Go
Raw Normal View History

//go:build !windows
package update
import "errors"
func deployLaunch(savedPath, nextAddr string) error {
return errors.New("deploy is only supported on windows")
}