Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/build_addons.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ def node_gyp_rebuild(test_dir):

# We buffer the output and print it out once the process is done in order
# to avoid interleaved output from multiple builds running at once.
return_code = process.wait()
stdout, stderr = process.communicate()
return_code = process.returncode
if return_code != 0:
print(f'Failed to build addon in {test_dir}:')
if stdout:
Expand Down
Loading