summaryrefslogtreecommitdiffstats
path: root/src/executor.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-01-30 21:27:34 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-01-30 21:27:34 +0100
commit6eb0851420b358132dd8a72312b25a1f7efd02de (patch)
tree6cae08b9d96c6d38969e7025b400c6a21459ba63 /src/executor.rs
parentb55edb96ae0f45d9dce64d6f2e78a9b8d3ff4ef9 (diff)
downloadrebel-6eb0851420b358132dd8a72312b25a1f7efd02de.tar
rebel-6eb0851420b358132dd8a72312b25a1f7efd02de.zip
runner: run commands in buildah containers
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 e07b4e3..2523162 100644
--- a/src/executor.rs
+++ b/src/executor.rs
@@ -70,7 +70,7 @@ impl<'a> Executor<'a> {
}
pub fn run(&mut self) -> runner::Result<()> {
- let runner = runner::buildah::RunnerBuildah::new(self.tasks);
+ let runner = runner::buildah::BuildahRunner::new(self.tasks);
while !self.tasks_runnable.is_empty() {
self.run_one(&runner)?;
}