forked from DGNum/colmena
apply-local: Fix output after rewrite
This commit is contained in:
parent
0cb3f8e968
commit
46090598eb
1 changed files with 6 additions and 1 deletions
|
@ -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(())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue