feat: include sync
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 01:56:57 +01:00
parent ef77451bb7
commit 365b840fe9
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -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(())
}