From f4bdd3c8763005cc96c00092d61cc4504f8f33e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Tue, 3 Dec 2019 15:17:38 +0100 Subject: [PATCH] avoid implicit --noinit if extra packages are specified --- osc/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/build.py b/osc/build.py index f2d2ae1c..9771acd8 100644 --- a/osc/build.py +++ b/osc/build.py @@ -676,7 +676,7 @@ def main(apiurl, opts, argv): if opts.shell: buildargs.append("--shell") - if os.path.exists(build_root) and not opts.clean: + if os.path.exists(build_root) and not opts.clean and not opts.extra_pkgs: opts.noinit = True opts.offline = True