From 365b840fe983eeec97c8d3662d46db0ef524ee44 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 30 Mar 2024 01:56:57 +0100 Subject: [PATCH] feat: include sync Signed-off-by: kjuulh --- crates/cuddle-ci/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/cuddle-ci/src/lib.rs b/crates/cuddle-ci/src/lib.rs index 71a866d..7edc767 100644 --- a/crates/cuddle-ci/src/lib.rs +++ b/crates/cuddle-ci/src/lib.rs @@ -59,7 +59,10 @@ pub mod drone_templater { "upload", "--template", &self.template.display().to_string(), - ]); + ]) + .sync() + .await + .context("failed to upload drone templates with error")?; Ok(()) }