diff options
Diffstat (limited to 'container/autoroot.go')
| -rw-r--r-- | container/autoroot.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/container/autoroot.go b/container/autoroot.go index 32b50625..9d456099 100644 --- a/container/autoroot.go +++ b/container/autoroot.go @@ -29,7 +29,7 @@ func (r *AutoRootOp) Valid() bool { return r != nil && r.Host != nil } func (r *AutoRootOp) early(state *setupState, k syscallDispatcher) error { if d, err := k.readdir(r.Host.String()); err != nil { - return wrapErrSelf(err) + return err } else { r.resolved = make([]Op, 0, len(d)) for _, ent := range d { |
