[FIX] runbot: fix missing return

This was missing to make python (and other non docker) steps really
blazing fast
This commit is contained in:
Xavier-Do 2023-03-23 13:53:52 +01:00 committed by Christophe Monniez
parent b078275c94
commit 2acca91a97

View File

@ -282,6 +282,7 @@ class ConfigStep(models.Model):
docker_params = run_method(build, log_path, **kwargs)
if docker_params:
return build._docker_run(**docker_params)
return True
def _run_create_build(self, build, log_path):
count = 0