From e332f694130d40913083e52f454f7851b85000ac Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20=C5=A0tetiar?= Date: Sun, 18 Jun 2023 07:28:01 +0200 Subject: [PATCH] phase1: populateTargets: log branch name as well MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit So the progress is more verbose. Signed-off-by: Petr Å tetiar --- phase1/master.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phase1/master.cfg b/phase1/master.cfg index c4bccea..d443811 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -297,9 +297,10 @@ def populateTargets(): targets that only exist in specific branches get built. This takes a while during master startup but is executed only once. """ - log.msg("Populating targets, this will take time") sourcegit = work_dir + "/source.git" for branch in branchNames: + log.msg(f"Populating targets for {branch}, this will take time") + if os.path.isdir(sourcegit): subprocess.call(["rm", "-rf", sourcegit]) -- 2.30.2