From 052a15ace9bd6391ef1e935f949f986ee9840d47 Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Fri, 10 May 2013 14:25:45 -0700 Subject: [PATCH] - Registry: Fix the checksums file path --- registry.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry.go b/registry.go index 49fb5710a1..b8a3e10599 100644 --- a/registry.go +++ b/registry.go @@ -316,7 +316,7 @@ func (graph *Graph) PullRepository(stdout io.Writer, remote, askedTag string, re err = func() error { localChecksums := make(map[string]string) remoteChecksums := []ImgListJson{} - checksumDictPth := path.Join(graph.Root, "..", "checksums") + checksumDictPth := path.Join(graph.Root, "checksums") if err := json.Unmarshal(checksumsJson, &remoteChecksums); err != nil { return err