Browse code

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 <pascalgn@users.noreply.github.com>

Pascal authored on 2017/09/25 16:54:46
Showing 1 changed files
... ...
@@ -69,7 +69,7 @@ func Push(ctx context.Context, ref reference.Named, imagePushConfig *ImagePushCo
69 69
 		return err
70 70
 	}
71 71
 
72
-	progress.Messagef(imagePushConfig.ProgressOutput, "", "The push refers to a repository [%s]", repoInfo.Name.Name())
72
+	progress.Messagef(imagePushConfig.ProgressOutput, "", "The push refers to repository [%s]", repoInfo.Name.Name())
73 73
 
74 74
 	associations := imagePushConfig.ReferenceStore.ReferencesByName(repoInfo.Name)
75 75
 	if len(associations) == 0 {