From bfc473f982ecdbfbe885d104036ecf9f70f3cd0f Mon Sep 17 00:00:00 2001 From: baude Date: Wed, 17 Oct 2018 16:42:05 -0500 Subject: Vendor in new new buildah/ci libpod requires new buildah and container image versions to resolve bug #1640298 Signed-off-by: baude --- libpod/runtime_img.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libpod/runtime_img.go') diff --git a/libpod/runtime_img.go b/libpod/runtime_img.go index a21ea7673..be8711734 100644 --- a/libpod/runtime_img.go +++ b/libpod/runtime_img.go @@ -164,5 +164,6 @@ func removeStorageContainers(ctrIDs []string, store storage.Store) error { // Build adds the runtime to the imagebuildah call func (r *Runtime) Build(ctx context.Context, options imagebuildah.BuildOptions, dockerfiles ...string) error { - return imagebuildah.BuildDockerfiles(ctx, r.store, options, dockerfiles...) + _, _, err := imagebuildah.BuildDockerfiles(ctx, r.store, options, dockerfiles...) + return err } -- cgit v1.2.3-54-g00ecf