sys - amend RunSilentCmd

This commit is contained in:
Mahdi Abu Yasmine 2023-11-07 00:41:41 +01:00
parent e2fc91ffba
commit 0cf4755502

View File

@ -15,7 +15,7 @@ import (
var TERM_WIDTH = 0
func RunSilentCmd(cmd *exec.Cmd) int {
_, err := cmd.CombinedOutput()
err := cmd.Run()
return ManageStatusCmd(cmd, err)
}