From d82948b75d8aba97816ff5257240c1edb5e8de5b Mon Sep 17 00:00:00 2001 From: Pascal Date: Mon, 25 Sep 2017 09:54:46 +0200 Subject: [PATCH] Reworded push message Changed push message from "The push refers to a repository" to "The push refers to the repository" to make it clearer that this is just an information about the local source and not a distinction between pushing single images or whole repositories. Signed-off-by: Pascal --- distribution/push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/push.go b/distribution/push.go index 25b49faf5e..869a53ee63 100644 --- a/distribution/push.go +++ b/distribution/push.go @@ -69,7 +69,7 @@ func Push(ctx context.Context, ref reference.Named, imagePushConfig *ImagePushCo return err } - progress.Messagef(imagePushConfig.ProgressOutput, "", "The push refers to a repository [%s]", repoInfo.Name.Name()) + progress.Messagef(imagePushConfig.ProgressOutput, "", "The push refers to repository [%s]", repoInfo.Name.Name()) associations := imagePushConfig.ReferenceStore.ReferencesByName(repoInfo.Name) if len(associations) == 0 {