Correct typo in linuxkit pkg push help.

Signed-off-by: Ian Campbell <ijc@docker.com>
This commit is contained in:
Ian Campbell 2017-10-10 16:11:48 +01:00
parent 8f1d39cea1
commit 2264bc8021

View File

@ -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()