Use customcmd commands if they did not error.

This commit is contained in:
Joachim Meyer 2023-02-15 09:09:54 +01:00
parent abd49a377c
commit acf426a373

View File

@ -48,7 +48,7 @@ func (m *CustomCmdCollector) Init(config json.RawMessage) error {
command := exec.Command(cmdfields[0], strings.Join(cmdfields[1:], " "))
command.Wait()
_, err = command.Output()
if err != nil {
if err == nil {
m.commands = append(m.commands, c)
}
}