1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-13 16:01:28 +05:30

trying to the OSX test to pass on Travis, it passes locally

Signed-off-by: avaid96 <avaid1996@gmail.com>
This commit is contained in:
avaid96
2016-07-15 17:32:47 -07:00
parent 029e094488
commit b3ebaa455d
2 changed files with 13 additions and 5 deletions
+8
View File
@@ -37,3 +37,11 @@ func (h Wincred) Get(serverURL string) (string, string, error) {
}
return g.UserName, string(g.CredentialBlob), nil
}
func (h Wincred) List() ([]string, []string, error) {
accts, paths, err := winc.List()
if err != nil {
return err
}
return paths, accts, nil
}