fix: correct download list for incremental builds (#1672)

This commit is contained in:
Ellie Huxtable 2024-02-04 21:06:47 +01:00 committed by GitHub
parent cc2aa6524d
commit 3ff2e2552f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -288,7 +288,10 @@ pub async fn sync_remote(
tag,
local,
remote,
} => downloaded = sync_download(local_store, &client, host, tag, local, remote).await?,
} => {
let mut d = sync_download(local_store, &client, host, tag, local, remote).await?;
downloaded.append(&mut d)
}
Operation::Noop { .. } => continue,
}