No 'failed step' notification (#917)

This commit is contained in:
Roey Darwish Dror
2022-05-06 12:44:27 +03:00
committed by GitHub
parent 5d168bbf0d
commit 591f23e2f7

View File

@@ -103,9 +103,9 @@ impl Terminal {
if let Some(timeout) = timeout { if let Some(timeout) = timeout {
command.arg("-t"); command.arg("-t");
command.arg(format!("{}", timeout.as_millis())); command.arg(format!("{}", timeout.as_millis()));
command.args(&["-a", "Topgrade"]);
command.arg(message.as_ref());
} }
command.args(&["-a", "Topgrade"]);
command.arg(message.as_ref());
command.output().ok(); command.output().ok();
} }
} }