From ac3ac95930fdb0ee3e111c7f14b10fefcdcb66f3 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 8 Jun 2016 10:23:10 -0700 Subject: [PATCH] First attempt to unstick Windows --- manifest/fetch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest/fetch.go b/manifest/fetch.go index 3397530..fb04ab9 100644 --- a/manifest/fetch.go +++ b/manifest/fetch.go @@ -17,7 +17,7 @@ import ( // the file "library/repo" // (repoName, tagName, man, err) func Fetch(library, repo string) (string, string, *Manifest2822, error) { - repoName := path.Base(repo) + repoName := filepath.Base(repo) tagName := "" if tagIndex := strings.IndexRune(repoName, ':'); tagIndex > 0 { tagName = repoName[tagIndex+1:]