From 50fafaa8dfeb76bb6ef0f9f9b7bb954260b7e4c5 Mon Sep 17 00:00:00 2001 From: Mikhail Gordeev Date: Mon, 4 Nov 2019 19:35:54 +0300 Subject: [PATCH] Execute and log copying of external images --- cloud-build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cloud-build.py b/cloud-build.py index 3b6a77f..8e08113 100755 --- a/cloud-build.py +++ b/cloud-build.py @@ -512,6 +512,7 @@ Dir::Etc::preferencesparts "/var/empty"; with self.pushd(self.external_images / branch): for image in os.listdir(): + self.info(f'Copy external image {image} in {branch}') self.copy_image(image, self.images_dir / branch / image) @@ -588,6 +589,7 @@ def main(): args = parse_args() cloud_build = CB(args) cloud_build.create_images() + cloud_build.copy_external_images() cloud_build.sign() cloud_build.sync()