mirror of
https://github.com/containers/podman.git
synced 2025-12-01 18:49:18 +08:00
Update vendor or containers/buildah
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
4
vendor/github.com/containers/buildah/unmount.go
generated
vendored
4
vendor/github.com/containers/buildah/unmount.go
generated
vendored
@@ -6,12 +6,12 @@ import "fmt"
|
||||
func (b *Builder) Unmount() error {
|
||||
_, err := b.store.Unmount(b.ContainerID, false)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error unmounting build container %q: %w", b.ContainerID, err)
|
||||
return fmt.Errorf("unmounting build container %q: %w", b.ContainerID, err)
|
||||
}
|
||||
b.MountPoint = ""
|
||||
err = b.Save()
|
||||
if err != nil {
|
||||
return fmt.Errorf("error saving updated state for build container %q: %w", b.ContainerID, err)
|
||||
return fmt.Errorf("saving updated state for build container %q: %w", b.ContainerID, err)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user