diff --git a/src/command/apply_local.rs b/src/command/apply_local.rs index 836429b..1286e85 100644 --- a/src/command/apply_local.rs +++ b/src/command/apply_local.rs @@ -137,7 +137,12 @@ pub async fn run(_global_args: &ArgMatches<'_>, local_args: &ArgMatches<'_>) -> deployment.set_options(options); - deployment.execute().await?; + let (deployment, output) = tokio::join!( + deployment.execute(), + output.run_until_completion(), + ); + + deployment?; output?; Ok(()) }