From 82674372946b431f93add255e137f82822eecfc1 Mon Sep 17 00:00:00 2001 From: Yurii Rashkovskii Date: Tue, 26 Nov 2013 06:54:46 -0800 Subject: [PATCH] Fix command line help for docker save `docker save IMAGE DESTINATION` is not what `docker save` expects --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index d992db2e6c..f298e41d1b 100644 --- a/commands.go +++ b/commands.go @@ -2195,7 +2195,7 @@ func (cli *DockerCli) CmdCp(args ...string) error { } func (cli *DockerCli) CmdSave(args ...string) error { - cmd := cli.Subcmd("save", "IMAGE DESTINATION", "Save an image to a tar archive") + cmd := cli.Subcmd("save", "IMAGE", "Save an image to a tar archive (streamed to stdout)") if err := cmd.Parse(args); err != nil { return err }