Bump aufs for unsupported errors

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby
2018-10-26 16:49:31 -04:00
parent 7f8b405eac
commit 1cc93460d7
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ type snapshotter struct {
// New creates a new snapshotter using aufs
func New(root string) (snapshots.Snapshotter, error) {
if err := supported(); err != nil {
return nil, err
return nil, errors.Wrap(plugin.ErrSkipPlugin, err.Error())
}
if err := os.MkdirAll(root, 0700); err != nil {
return nil, err