mirror of
https://github.com/atuinsh/atuin.git
synced 2025-01-16 03:10:21 +01:00
fix: correct download list for incremental builds (#1672)
This commit is contained in:
parent
cc2aa6524d
commit
3ff2e2552f
@ -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,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user