diff --git a/image/config.go b/image/config.go index 0f8cfaa..100d99c 100644 --- a/image/config.go +++ b/image/config.go @@ -55,7 +55,7 @@ func findConfig(w walker, d *descriptor) (*config, error) { } // check if the rootfs type is 'layers' if c.RootFS.Type != "layers" { - return fmt.Errorf("'%s' is an unknown rootfs type, MUST be 'layers'", c.RootFS.Type) + return fmt.Errorf("%q is an unknown rootfs type, MUST be 'layers'", c.RootFS.Type) } return errEOW }); err {