summaryrefslogtreecommitdiffstats
path: root/atuin/src/command/client/sync.rs
diff options
context:
space:
mode:
Diffstat (limited to 'atuin/src/command/client/sync.rs')
-rw-r--r--atuin/src/command/client/sync.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/atuin/src/command/client/sync.rs b/atuin/src/command/client/sync.rs
index 4889cbca..be1bf6d2 100644
--- a/atuin/src/command/client/sync.rs
+++ b/atuin/src/command/client/sync.rs
@@ -90,7 +90,7 @@ async fn run(
let (uploaded, downloaded) = sync::sync(settings, &store).await?;
- history_store.incremental_build(db, &downloaded).await?;
+ crate::sync::build(settings, &store, db, Some(&downloaded)).await?;
println!("{uploaded}/{} up/down to record store", downloaded.len());
@@ -113,7 +113,7 @@ async fn run(
// we'll want to run sync once more, as there will now be stuff to upload
let (uploaded, downloaded) = sync::sync(settings, &store).await?;
- history_store.incremental_build(db, &downloaded).await?;
+ crate::sync::build(settings, &store, db, Some(&downloaded)).await?;
println!("{uploaded}/{} up/down to record store", downloaded.len());
}