diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-02-08 14:26:51 -0500 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-02-18 14:29:57 -0500 |
commit | 566c8a43baf63d43f3bf2320f0feadc6104d931e (patch) | |
tree | abfd89f0fc70bacd2de5490a1cdb78662ea75ae6 /pkg/domain/infra | |
parent | 3d14b56282dc16518aac1825db318d93495785af (diff) | |
download | podman-566c8a43baf63d43f3bf2320f0feadc6104d931e.tar.gz podman-566c8a43baf63d43f3bf2320f0feadc6104d931e.tar.bz2 podman-566c8a43baf63d43f3bf2320f0feadc6104d931e.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/domain/infra')
-rw-r--r-- | pkg/domain/infra/tunnel/images.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/pkg/domain/infra/tunnel/images.go b/pkg/domain/infra/tunnel/images.go index 214a9fef8..b5f09ab22 100644 --- a/pkg/domain/infra/tunnel/images.go +++ b/pkg/domain/infra/tunnel/images.go @@ -349,17 +349,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 } |