Skip to content

Commit

Permalink
Bug 1511285 - followup: Properly wait for the child process. r+a=Andi
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio committed Nov 30, 2018
1 parent 4e2f400 commit c66317a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/mozbuild/mozbuild/mach_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -2827,6 +2827,7 @@ def _run_clang_format_in_console(self, clang_format, paths, assume_filename):
with open(paths[0], 'r') as fin:
process.stdin.write(fin.read())
process.stdin.close()
process.wait();
return 0

def _run_clang_format_path(self, clang_format, show, paths):
Expand Down

0 comments on commit c66317a

Please sign in to comment.