summaryrefslogtreecommitdiffstats
path: root/src/commands/source.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/source.rs')
-rw-r--r--src/commands/source.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/source.rs b/src/commands/source.rs
index f29ce84..5c118e5 100644
--- a/src/commands/source.rs
+++ b/src/commands/source.rs
@@ -306,9 +306,9 @@ pub async fn download(
})
.flatten()
.collect::<futures::stream::FuturesUnordered<_>>()
- .collect::<Result<()>>();
+ .collect::<Vec<Result<()>>>();
let multibar_block = tokio::task::spawn_blocking(move || multi.join());
let (r, _) = tokio::join!(r, multibar_block);
- r
+ r.into_iter().collect()
}