Skip to content

Commit

Permalink
Merge pull request #10139 from DennisMao/patch-1
Browse files Browse the repository at this point in the history
tools: fix building failures on Win
  • Loading branch information
gyuho authored Oct 2, 2018
2 parents b8969de + 32a3a73 commit 1f5aea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/etcd-dump-metrics/install_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}

0 comments on commit 1f5aea3

Please sign in to comment.