From 48e3ce2f754ba9b30b195a3c48ffdfb2b147d1ab Mon Sep 17 00:00:00 2001 From: Robert Cerven Date: Mon, 7 Oct 2019 21:32:46 +0200 Subject: [PATCH 2/5] Pass skip_build option to buildContainer * OSBS-7711 Signed-off-by: Robert Cerven --- pyrpkg/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyrpkg/__init__.py b/pyrpkg/__init__.py index 68aceb2..8e0960b 100644 --- a/pyrpkg/__init__.py +++ b/pyrpkg/__init__.py @@ -3126,7 +3126,8 @@ class Commands(object): task_opts = {} for key in ('scratch', 'name', 'version', 'release', - 'yum_repourls', 'git_branch', 'signing_intent', 'compose_ids'): + 'yum_repourls', 'git_branch', 'signing_intent', 'compose_ids', + 'skip_build'): if key in opts: task_opts[key] = opts[key] -- 2.21.0