Sfoglia il codice sorgente

- Registry: Fix the checksums file path

Guillaume J. Charmes 12 anni fa
parent
commit
052a15ace9
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      registry.go

+ 1 - 1
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