mirror of
https://github.com/atuinsh/atuin.git
synced 2025-01-29 01:29:51 +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,
|
tag,
|
||||||
local,
|
local,
|
||||||
remote,
|
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,
|
Operation::Noop { .. } => continue,
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user