diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-21 15:38:58 -0500 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-02-22 16:40:05 -0500 |
commit | ff0b4652efe4c502459d88fa6743168c6113244f (patch) | |
tree | 073484971fe2b943ab4ddde80d88420f2ac8603a /libpod | |
parent | 4d9f4cf71c79639da451a12a9e1d1d824bd15a9f (diff) | |
download | podman-ff0b4652efe4c502459d88fa6743168c6113244f.tar.gz podman-ff0b4652efe4c502459d88fa6743168c6113244f.tar.bz2 podman-ff0b4652efe4c502459d88fa6743168c6113244f.zip |
Vendor Buildah v1.7
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Vendors in Buildah 1.7 into Podman.
Also the latest imagebuilder and changes for
`build --target`
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/container_commit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_commit.go b/libpod/container_commit.go index 026611e51..5c4fd1a31 100644 --- a/libpod/container_commit.go +++ b/libpod/container_commit.go @@ -162,7 +162,7 @@ func (c *Container) Commit(ctx context.Context, destImage string, options Contai importBuilder.SetWorkDir(splitChange[1]) } } - candidates, _, err := util.ResolveName(destImage, "", sc, c.runtime.store) + candidates, _, _, err := util.ResolveName(destImage, "", sc, c.runtime.store) if err != nil { return nil, errors.Wrapf(err, "error resolving name %q", destImage) } |