From 571f7a528fdea7af7c6577fc74bd73ab7bffdc89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Gaspard?= Date: Fri, 16 Mar 2018 02:30:34 +0100 Subject: [PATCH] Log the command that is run And this assert should never have made it into the last PR, my `git add -p`-fu failed me. --- ofborg/src/tasks/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofborg/src/tasks/build.rs b/ofborg/src/tasks/build.rs index 7e13d95..dff6c82 100644 --- a/ofborg/src/tasks/build.rs +++ b/ofborg/src/tasks/build.rs @@ -338,6 +338,7 @@ impl notifyworker::SimpleNotifyWorker for BuildWorker { can_build.clone(), ); + println!("About to execute {:?}", cmd); actions.log_started(can_build.clone(), cannot_build.clone()); let acmd = AsyncCmd::new(cmd); let mut spawned = acmd.spawn(); @@ -373,7 +374,6 @@ impl notifyworker::SimpleNotifyWorker for BuildWorker { println!("Lines:\n-----8<-----"); snippet_log.iter().inspect(|x| println!("{}", x)).last(); println!("----->8-----"); - assert!(success); let last10lines: Vec = snippet_log.into_iter().collect::>();