Skip to content

Commit 896b143

Browse files
authored
Merge pull request #694 from apple/PR/hotfix-return-results
[Hotfix] Return results accordingly from the spawned process
2 parents d7ee51e + d9d6783 commit 896b143

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,7 @@ def start_process(self, project_subbuilder, default_timeout):
10021002
not inherit the default timeout from the parent process.
10031003
"""
10041004
common.set_default_execute_timeout(default_timeout)
1005-
project_subbuilder.build()
1005+
return project_subbuilder.build()
10061006

10071007
def build(self, stdout=sys.stdout):
10081008
# Setup process pool to submit work to

0 commit comments

Comments
 (0)