repoman icon indicating copy to clipboard operation
repoman copied to clipboard

New feature request: execute `repoman get` in parallel

Open stennie opened this issue 5 years ago • 1 comments

Commands are currently explicitly exec'd in series: https://github.com/basti1302/repoman/blob/69bae2da6bb5f36e00347c22c2b36cfca5e61dec/lib/repoman.js#L255

I suspect that may be to ensure multiple tasks execute in order for each repo, although it seems like command batches could be async per repo.

stennie avatar Nov 28 '19 02:11 stennie

I think keeping them in series should still be the default for most commands. Executing in parallel will at the very least make the output hard to read I guess, because output for different repos might be mixed up. But allowing for parallel execution as opt-in would probably be possible.

basti1302 avatar Oct 30 '23 18:10 basti1302