From 2264bc80218e15c5a13e701d850d4b66751ecf80 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Tue, 10 Oct 2017 16:11:48 +0100 Subject: [PATCH] Correct typo in linuxkit pkg push help. Signed-off-by: Ian Campbell --- src/cmd/linuxkit/pkg_push.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/linuxkit/pkg_push.go b/src/cmd/linuxkit/pkg_push.go index e0141a1d4..6214d6990 100644 --- a/src/cmd/linuxkit/pkg_push.go +++ b/src/cmd/linuxkit/pkg_push.go @@ -13,7 +13,7 @@ func pkgPush(args []string) { flags := flag.NewFlagSet("pkg push", flag.ExitOnError) flags.Usage = func() { invoked := filepath.Base(os.Args[0]) - fmt.Fprintf(os.Stderr, "USAGE: %s pkg build [options] path\n\n", invoked) + fmt.Fprintf(os.Stderr, "USAGE: %s pkg push [options] path\n\n", invoked) fmt.Fprintf(os.Stderr, "'path' specifies the path to the package source directory.\n") fmt.Fprintf(os.Stderr, "\n") flags.PrintDefaults()