tools/metrics.py: Use check_call instead of run to error out on error.

pull/5749/head
Damien George 2020-03-11 14:23:39 +11:00
rodzic 7bf62562ce
commit 554c01fc25
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -78,7 +78,7 @@ def syscmd(*args):
a2.append(a)
elif a:
a2.extend(a)
subprocess.run(a2)
subprocess.check_call(a2)
def parse_port_list(args):