summaryrefslogtreecommitdiffstats
path: root/src/commands/build.rs
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-01-19 09:28:50 +0100
committerMatthias Beyer <matthias.beyer@atos.net>2021-01-19 15:31:06 +0100
commitca928fbda28aa89bbdef6bfe48700a4722201b1d (patch)
treee907783213a6994eb0fef6b1cd4be7c2d0c7a511 /src/commands/build.rs
parent72591aaba2bda63a75947ca1991ad12a0a0bb05d (diff)
Fix: Missing variable name for interpolation
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
Diffstat (limited to 'src/commands/build.rs')
-rw-r--r--src/commands/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/build.rs b/src/commands/build.rs
index 2af3588..8f20b3b 100644
--- a/src/commands/build.rs
+++ b/src/commands/build.rs
@@ -85,7 +85,7 @@ pub async fn build(
.any(|img| image_name == *img)
{
return Err(anyhow!(
- "Requested build image {} is not in the configured images"
+ "Requested build image {} is not in the configured images", image_name
))
.with_context(|| anyhow!("Available images: {:?}", config.docker().images()))
.with_context(|| anyhow!("Image present verification failed"))