mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Turn check to False
This commit is contained in:
parent
89c77de69a
commit
59fcb41ccb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue