mirror of
https://github.com/torvalds/linux.git
synced 2026-08-01 03:59:40 +02:00
Merge "build: Fix OSError exception"
This commit is contained in:
commit
69ba5ed381
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user