1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Just return the id; nothing else.

Upstream-commit: 62f873aa1f918fe4d303f6168f66d057e6776b18
Component: engine
This commit is contained in:
Mark Allen
2013-11-11 13:26:24 -06:00
parent 9fcdb45469
commit 29829cd5d2

View File

@@ -229,7 +229,7 @@ func (srv *Server) ImageInsert(name, url, path string, out io.Writer, sf *utils.
if err != nil {
return err
}
out.Write(sf.FormatStatus(img.ID, "Image created"))
out.Write(sf.FormatStatus(img.ID, ""))
return nil
}