From 061384413c86a7a8845d68526bc947240ad494e5 Mon Sep 17 00:00:00 2001 From: baude Date: Tue, 15 May 2018 08:15:08 -0500 Subject: improve podman commit documentation and error messages document --format|-f in the commit man page. also, improve the error message when user tries to use -m with the oci image format. Resolves: 765 Signed-off-by: baude Closes: #768 Approved by: rhatdan --- cmd/podman/commit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/podman/commit.go b/cmd/podman/commit.go index 14b7ddace..9e468c2d9 100644 --- a/cmd/podman/commit.go +++ b/cmd/podman/commit.go @@ -80,7 +80,7 @@ func commitCmd(c *cli.Context) error { case "oci": mimeType = buildah.OCIv1ImageManifest if c.IsSet("message") { - return errors.Errorf("messages cannot be added to the OCIv1 image format.") + return errors.Errorf("messages are only compatible with the docker image format (-f docker)") } case "docker": mimeType = buildah.Dockerv2ImageManifest -- cgit v1.2.3-54-g00ecf