|
@@ -25,13 +25,14 @@ func (cli *DockerCli) CmdSave(args ...string) error {
|
|
|
output = cli.out
|
|
|
err error
|
|
|
)
|
|
|
+
|
|
|
+ if *outfile == "" && cli.isTerminalOut {
|
|
|
+ return errors.New("Cowardly refusing to save to a terminal. Use the -o flag or redirect.")
|
|
|
+ }
|
|
|
if *outfile != "" {
|
|
|
- output, err = os.Create(*outfile)
|
|
|
- if err != nil {
|
|
|
+ if output, err = os.Create(*outfile); err != nil {
|
|
|
return err
|
|
|
}
|
|
|
- } else if cli.isTerminalOut {
|
|
|
- return errors.New("Cowardly refusing to save to a terminal. Use the -o flag or redirect.")
|
|
|
}
|
|
|
|
|
|
sopts := &streamOpts{
|
|
@@ -39,19 +40,13 @@ func (cli *DockerCli) CmdSave(args ...string) error {
|
|
|
out: output,
|
|
|
}
|
|
|
|
|
|
- if len(cmd.Args()) == 1 {
|
|
|
- image := cmd.Arg(0)
|
|
|
- if _, err := cli.stream("GET", "/images/"+image+"/get", sopts); err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
- } else {
|
|
|
- v := url.Values{}
|
|
|
- for _, arg := range cmd.Args() {
|
|
|
- v.Add("names", arg)
|
|
|
- }
|
|
|
- if _, err := cli.stream("GET", "/images/get?"+v.Encode(), sopts); err != nil {
|
|
|
- return err
|
|
|
- }
|
|
|
+ v := url.Values{}
|
|
|
+ for _, arg := range cmd.Args() {
|
|
|
+ v.Add("names", arg)
|
|
|
}
|
|
|
+ if _, err := cli.stream("GET", "/images/get?"+v.Encode(), sopts); err != nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
return nil
|
|
|
}
|