summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/hiccup2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hiccup b/bin/hiccup
index 4072cb7..4c98c42 100755
--- a/bin/hiccup
+++ b/bin/hiccup
@@ -52,7 +52,7 @@ class CurrentDistro:
def __run_items(self, msg: str, dct: dict):
for name, cmd in dct.items():
print(msg.format(name))
- result = self.__sys_cmd(name, cmd, append = ' &> /dev/null')
+ result = self.__sys_cmd(name, cmd, append = ' > /dev/null 2>&1')
if result != 0:
raise CommandFailedError(name)