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