We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b725d1 commit 492548aCopy full SHA for 492548a
1 file changed
buildbot/master/master.cfg
@@ -329,8 +329,6 @@ def builder(**configExtra):
329
def runstep(step):
330
try:
331
steps = iter(step)
332
- for step in steps:
333
- runstep(step)
334
except TypeError:
335
info = step._factory
336
stepkwargs = dict(
@@ -339,6 +337,9 @@ def builder(**configExtra):
339
337
stepkwargs.update(info.kwargs)
340
338
step = info.factory(*info.args, **stepkwargs)
341
factory.addStep(step)
+ return
+ for step in steps:
342
+ runstep(step)
343
344
runstep(f())
345
0 commit comments