aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/command.rs
diff options
context:
space:
mode:
authordatdenkikniet <jcdra1@gmail.com>2023-04-15 20:57:27 +0200
committerdatdenkikniet <jcdra1@gmail.com>2023-04-16 13:08:46 +0200
commit859cd418f063590a9928b3e43caeea0b53dc0823 (patch)
tree8b3fe69e04ef07038928c87370d2361392f81123 /xtask/src/command.rs
parent6517a4bec2e909b40eb9974e063f95e44e4d9a31 (diff)
Rename some things
Diffstat (limited to 'xtask/src/command.rs')
-rw-r--r--xtask/src/command.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/xtask/src/command.rs b/xtask/src/command.rs
index 93ea824..a1c4d25 100644
--- a/xtask/src/command.rs
+++ b/xtask/src/command.rs
@@ -831,16 +831,16 @@ pub fn handle_results(globals: &Globals, results: Vec<FinalRunResult>) -> Result
};
if globals.verbose > 0 {
- info!("✅ Success:{path} {cmd}\n {}", cmd.as_cmd_string());
+ info!("✅ Success: {cmd}{path}\n {}", cmd.as_cmd_string());
} else {
- info!("✅ Success:{path} {cmd}");
+ info!("✅ Success:{cmd}{path}");
}
});
errors.clone().for_each(|(cmd, _, _)| {
if let Some(dir) = cmd.chdir() {
let path = dir.as_os_str().to_str().unwrap_or("Not displayable");
- error!("❌ Failed: (in {path}) {cmd}\n {}", cmd.as_cmd_string());
+ error!("❌ Failed: {cmd} (in {path}) \n {}", cmd.as_cmd_string());
} else {
error!("❌ Failed: {cmd}\n {}", cmd.as_cmd_string());
}