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 --- test/copyimg/copyimg.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/copyimg/copyimg.go b/test/copyimg/copyimg.go index 26100beea..da00964fa 100644 --- a/test/copyimg/copyimg.go +++ b/test/copyimg/copyimg.go @@ -160,7 +160,7 @@ func main() { ctx := context.TODO() if imageName != "" { if importFrom != "" { - err = copy.Image(ctx, policyContext, ref, importRef, options) + _, err = copy.Image(ctx, policyContext, ref, importRef, options) if err != nil { logrus.Errorf("error importing %s: %v", importFrom, err) os.Exit(1) @@ -180,7 +180,7 @@ func main() { } } if exportTo != "" { - err = copy.Image(ctx, policyContext, exportRef, ref, options) + _, err = copy.Image(ctx, policyContext, exportRef, ref, options) if err != nil { logrus.Errorf("error exporting %s: %v", exportTo, err) os.Exit(1) @@ -188,7 +188,7 @@ func main() { } } else { if importFrom != "" && exportTo != "" { - err = copy.Image(ctx, policyContext, exportRef, importRef, options) + _, err = copy.Image(ctx, policyContext, exportRef, importRef, options) if err != nil { logrus.Errorf("error copying %s to %s: %v", importFrom, exportTo, err) os.Exit(1) -- cgit v1.2.3-54-g00ecf