Merge "build: Fix OSError exception"

This commit is contained in:
qctecmdr 2022-11-30 17:33:43 -08:00 committed by Gerrit - the friendly Code Review server
commit 69ba5ed381

View File

@ -42,8 +42,11 @@ class BazelBuilder:
def __del__(self):
for proc in self.process_list:
proc.kill()
proc.wait()
try:
proc.kill()
proc.wait()
except OSError:
pass
@staticmethod
def get_cross_cli_opts(toolchain):