1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

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
}