1
0
Fork 0

make silent_system show error by default

This commit is contained in:
Kim, Jimin 2022-07-01 14:25:15 +09:00
parent cb1ade47c4
commit 8c5423e257
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ tmp_dir = "/tmp/com.developomp.setup"
#
def silent_system(command: str, suppress_error: bool = True) -> None:
def silent_system(command: str, suppress_error: bool = False) -> None:
if suppress_error:
system(f"{command} &> /dev/null")
else: