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:
parent
06d5e25224
commit
8267437294
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue