We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d97421c + 52f45b5 commit 56d630fCopy full SHA for 56d630f
src/cargo/core/compiler/job_queue.rs
@@ -400,18 +400,19 @@ impl<'a> JobQueue<'a> {
400
let res = job.run(fresh, &JobState { tx: my_tx.clone() });
401
my_tx.send(Message::Finish(key, res)).unwrap();
402
};
403
+
404
+ if !build_plan {
405
+ // Print out some nice progress information
406
+ self.note_working_on(config, &key, fresh)?;
407
+ }
408
409
match fresh {
410
Freshness::Fresh => doit(),
411
Freshness::Dirty => {
412
scope.spawn(doit);
413
}
414
415
- if !build_plan {
- // Print out some nice progress information
- self.note_working_on(config, &key, fresh)?;
- }
-
416
Ok(())
417
418
0 commit comments