summaryrefslogtreecommitdiffstats
path: root/src/executor.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-09-26 13:14:22 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-09-26 13:19:28 +0200
commit6d0851d1dc8fb620010468fa7ff60e7e6fd64427 (patch)
treef07575672964eb02f1e163d409964e073e29c7da /src/executor.rs
parent1d59ffec4a1194cb012c82cf60542b7fde23b5dc (diff)
downloadrebel-6d0851d1dc8fb620010468fa7ff60e7e6fd64427.tar
rebel-6d0851d1dc8fb620010468fa7ff60e7e6fd64427.zip
executor: fix host dependency error message
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 8735f49..b53b519 100644
--- a/src/executor.rs
+++ b/src/executor.rs
@@ -145,7 +145,7 @@ impl<'ctx> Executor<'ctx> {
self.ctx,
self.ctx
.get_host_depends(task)
- .with_context(|| format!("invalid build depends for {}", task))
+ .with_context(|| format!("invalid depends for {}", task))
.unwrap(),
)
.expect("invalid runtime depends of host_depends")