mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #10139 from DennisMao/patch-1
tools: fix building failures on Win
This commit is contained in:
commit
1f5aea320a
@ -18,6 +18,6 @@ package main
|
||||
|
||||
import "errors"
|
||||
|
||||
func install(ver, dir string) error {
|
||||
return errors.New("windows install is not supported yet")
|
||||
func install(ver, dir string) (string, error) {
|
||||
return "", errors.New("windows install is not supported yet")
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user