diff options
Diffstat (limited to 'vendor/github.com/projectatomic/buildah/unmount.go')
-rw-r--r-- | vendor/github.com/projectatomic/buildah/unmount.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/projectatomic/buildah/unmount.go b/vendor/github.com/projectatomic/buildah/unmount.go index e1578bf71..cdb511170 100644 --- a/vendor/github.com/projectatomic/buildah/unmount.go +++ b/vendor/github.com/projectatomic/buildah/unmount.go @@ -2,7 +2,7 @@ package buildah // Unmount unmounts a build container. func (b *Builder) Unmount() error { - err := b.store.Unmount(b.ContainerID) + _, err := b.store.Unmount(b.ContainerID, false) if err == nil { b.MountPoint = "" err = b.Save() |