summaryrefslogtreecommitdiffstats
path: root/src/commands/util.rs
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-02-15 10:18:43 +0100
committerMatthias Beyer <matthias.beyer@atos.net>2021-02-15 10:45:21 +0100
commitd5ad1115b04d54b12676e3d478a97cfa36e0c24e (patch)
treeb57c0cadf81677cbfbef95fd4ad3bb12a92a4747 /src/commands/util.rs
parent46d82494e50eef801ce66e6d738d710696a5b9fd (diff)
Fix: The {status} interpolation contains the word "exit" already
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
Diffstat (limited to 'src/commands/util.rs')
-rw-r--r--src/commands/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/util.rs b/src/commands/util.rs
index 1d4ac76..22ce5d4 100644
--- a/src/commands/util.rs
+++ b/src/commands/util.rs
@@ -71,7 +71,7 @@ where
let stderr = tpl.4;
if status.success() {
- info!("Linting {pkg_name} {pkg_vers} script (exit {status}):\nstdout:\n{stdout}\n\nstderr:\n\n{stderr}",
+ info!("Linting {pkg_name} {pkg_vers} script ({status}):\nstdout:\n{stdout}\n\nstderr:\n\n{stderr}",
pkg_name = pkg_name,
pkg_vers = pkg_vers,
status = status,