Fix command line help for docker save

`docker save IMAGE DESTINATION` is not what `docker save` expects
This commit is contained in:
Yurii Rashkovskii
2013-11-26 06:54:46 -08:00
parent 06d5e25224
commit 8267437294
+1 -1
View File
@@ -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
}