From: Petr Štetiar Date: Sun, 18 Jun 2023 05:28:01 +0000 (+0200) Subject: phase1: populateTargets: log branch name as well X-Git-Tag: v8~2 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=e332f694130d40913083e52f454f7851b85000ac;p=buildbot.git phase1: populateTargets: log branch name as well So the progress is more verbose. Signed-off-by: Petr Štetiar --- 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])