Merge pull request #10139 from DennisMao/patch-1

tools: fix building failures on Win
This commit is contained in:
Gyuho Lee 2018-10-02 13:30:49 -07:00 committed by GitHub
commit 1f5aea320a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")
}