with executors WIP

This commit is contained in:
2022-11-22 13:37:10 +01:00
parent 30d9410e9f
commit b7a0e0b96e
7 changed files with 40 additions and 1 deletions

View File

@@ -47,9 +47,13 @@ pub async fn execute_subcommand(args: &ArgMatches) -> eyre::Result<()> {
repo_clones.push(tokio::spawn(async move { gp.clone_from_url(repo).await }));
}
let mut paths = Vec::new();
for repo_clone in repo_clones {
let report = repo_clone.await??;
let path = repo_clone.await??;
paths.push(path);
}
kk
}
}