feat: remove extra fluff
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-03-30 15:42:41 +01:00
parent e7e456e5d9
commit 4f15e5a887
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -61,9 +61,9 @@ impl MainAction for DroneTemplater {
.chain(
self.variables
.iter()
.map(|(name, value)| format!(r#"--variable='{name}={value}'"#)),
.map(|(name, value)| format!(r#"--variable={name}={value}"#)),
)
.chain(vec![format!("--variable='image_tag={}'", image_tag)])
.chain(vec![format!("--variable=image_tag={}", image_tag)])
.collect::<Vec<_>>();
self.client