summaryrefslogtreecommitdiffstats
path: root/src/commands/build.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-03-11 11:48:20 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-03-11 11:48:20 +0100
commitc5557bf6ea8f4f9c81fe30c6518f7784da777865 (patch)
tree8d4a5e9f3069af87827a12193f350bbe96fa2b18 /src/commands/build.rs
parent5ca0dbdf1b13eda96a074d0a2d29dffcb5e60b25 (diff)
parent7a77343ec3ddb99fbbc4b46d2dd6b0dce6c80d60 (diff)
Merge branch 'misc'
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 81077d4..bbaa83f 100644
--- a/src/commands/build.rs
+++ b/src/commands/build.rs
@@ -88,7 +88,7 @@ pub async fn build(
return Err(anyhow!(
"Requested build image {} is not in the configured images", image_name
))
- .with_context(|| anyhow!("Available images: {:?}", config.docker().images()))
+ .with_context(|| anyhow!("Available images: {}", config.docker().images().iter().join(", ")))
.with_context(|| anyhow!("Image present verification failed"))
.map_err(Error::from);
}