Skip to content

Commit 3def49d

Browse files
committed
Fix oci repo digest format
1 parent 9c526bf commit 3def49d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/builder/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ func main() {
595595
if len(index.Manifests) != 1 {
596596
panic("Expected exactly one manifest in index")
597597
}
598-
digests[entry.Name()] = index.Manifests[0].Digest.Encoded()
598+
digests[entry.Name()] = string(index.Manifests[0].Digest)
599599
}
600600
}
601601

0 commit comments

Comments
 (0)