summaryrefslogtreecommitdiffstats
path: root/src/executor.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-06-20 15:15:18 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-06-20 16:57:51 +0200
commit79a60833a6f7c856818afc0b0ef7a51bbf158072 (patch)
treeb65d00a02079ec2a8354170dab1469a6ca2d5c1f /src/executor.rs
parentbe9a8479aaf63794e450e885165842704bf70bf1 (diff)
downloadrebel-79a60833a6f7c856818afc0b0ef7a51bbf158072.tar
rebel-79a60833a6f7c856818afc0b0ef7a51bbf158072.zip
runc: pass hash back to executor
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);