Skip to content

Commit 52f45b5

Browse files
committed
Fix fix_path_deps test error.
1 parent c5b9258 commit 52f45b5

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/cargo/core/compiler/job_queue.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -400,18 +400,19 @@ impl<'a> JobQueue<'a> {
400400
let res = job.run(fresh, &JobState { tx: my_tx.clone() });
401401
my_tx.send(Message::Finish(key, res)).unwrap();
402402
};
403+
404+
if !build_plan {
405+
// Print out some nice progress information
406+
self.note_working_on(config, &key, fresh)?;
407+
}
408+
403409
match fresh {
404410
Freshness::Fresh => doit(),
405411
Freshness::Dirty => {
406412
scope.spawn(doit);
407413
}
408414
}
409415

410-
if !build_plan {
411-
// Print out some nice progress information
412-
self.note_working_on(config, &key, fresh)?;
413-
}
414-
415416
Ok(())
416417
}
417418

0 commit comments

Comments
 (0)