fix: 🐛 Fix receiving

This commit is contained in:
Sergio Gasquez 2022-12-22 10:37:07 +00:00
parent ec65811977
commit a301fad617

View File

@ -239,7 +239,7 @@ async fn install(args: InstallOpts) -> Result<()> {
}
// Read the results of the install tasks as they complete.
for _ in 0..installable_items - 1 {
for _ in 0..installable_items {
let names = rx.recv().await.unwrap();
exports.extend(names);
}