From 82464fe9494fc6b07174b9cf4b5690cc71bfbdc6 Mon Sep 17 00:00:00 2001 From: Tonis Tiigi Date: Wed, 21 Jun 2017 12:49:33 -0700 Subject: [PATCH] Fix store errors build conflict Signed-off-by: Tonis Tiigi --- content/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/store.go b/content/store.go index a48a3c829..f9c068751 100644 --- a/content/store.go +++ b/content/store.go @@ -232,7 +232,7 @@ func (s *store) Writer(ctx context.Context, ref string, total int64, expected di if expected != "" { p := s.blobPath(expected) if _, err := os.Stat(p); err == nil { - return nil, ErrExists + return nil, ErrExists("") } }