Turn check to False

This commit is contained in:
Dimitris Zlatanidis 2024-05-23 18:51:44 +03:00
parent 89c77de69a
commit 59fcb41ccb

View file

@ -155,7 +155,7 @@ class MultiProcess(Configs): # pylint: disable=[R0902]
None.
"""
try:
output = subprocess.run(f'{command}', shell=True, stderr=stderr, stdout=stdout, check=True)
output = subprocess.run(f'{command}', shell=True, stderr=stderr, stdout=stdout, check=False)
except KeyboardInterrupt as e:
raise SystemExit(1) from e