summaryrefslogtreecommitdiffstats
path: root/src/executor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/executor.rs')
-rw-r--r--src/executor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/executor.rs b/src/executor.rs
index 1340f83..c616c0b 100644
--- a/src/executor.rs
+++ b/src/executor.rs
@@ -50,7 +50,7 @@ impl<'a> Executor<'a> {
fn run_one(&mut self, runner: &impl runner::Runner) -> runner::Result<()> {
let task = self.tasks_runnable.pop().expect("No runnable tasks left");
- runner.run(self.tasks, &task)?;
+ let _hash = runner.run(self.tasks, &task)?;
let rdeps = self.rdeps.get(&task);