summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-02-08 14:26:51 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2021-02-08 16:02:20 -0500
commit45981ba29ae75ec328bfd14018ec4ada52e7f189 (patch)
treebc9af98e3debada941cd025dfbb7a3ac490c6706 /pkg
parent19507d0ffe8cda0a69f056838556f471fd9e61fa (diff)
downloadpodman-45981ba29ae75ec328bfd14018ec4ada52e7f189.tar.gz
podman-45981ba29ae75ec328bfd14018ec4ada52e7f189.tar.bz2
podman-45981ba29ae75ec328bfd14018ec4ada52e7f189.zip
Bump containers/buildah to v1.19.4
Fix handling of --iidfile to happen on the client side. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/domain/infra/tunnel/images.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go
index f10c8c175..daad911cd 100644
--- a/pkg/domain/infra/tunnel/images.go
+++ b/pkg/domain/infra/tunnel/images.go
@@ -350,17 +350,6 @@ func (ir *ImageEngine) Build(_ context.Context, containerFiles []string, opts en
if err != nil {
return nil, err
}
- // For remote clients, if the option for writing to a file was
- // selected, we need to write to the *client's* filesystem.
- if len(opts.IIDFile) > 0 {
- f, err := os.Create(opts.IIDFile)
- if err != nil {
- return nil, err
- }
- if _, err := f.WriteString(report.ID); err != nil {
- return nil, err
- }
- }
return report, nil
}