aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/client/sync.rs
diff options
context:
space:
mode:
authorLuke Karrys <luke@lukekarrys.com>2023-03-06 15:46:03 -0700
committerGitHub <noreply@github.com>2023-03-06 22:46:03 +0000
commitca5bbea0d4c4fd86eb80f99688bcb78f8ba68877 (patch)
treeec0328acc9168672ec9d4cb22d022c83a02d43b1 /src/command/client/sync.rs
parentWindows support (#754) (diff)
downloadatuin-ca5bbea0d4c4fd86eb80f99688bcb78f8ba68877.zip
fix(client): always read session_path from settings (#757)
* fix(client): always read session_path from settings * fixup! fix(client): always read session_path from settings * fixup! fix(client): always read session_path from settings
Diffstat (limited to '')
-rw-r--r--src/command/client/sync.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/client/sync.rs b/src/command/client/sync.rs
index f71bcc99..c485e240 100644
--- a/src/command/client/sync.rs
+++ b/src/command/client/sync.rs
@@ -39,7 +39,7 @@ impl Cmd {
match self {
Self::Sync { force } => run(&settings, force, db).await,
Self::Login(l) => l.run(&settings).await,
- Self::Logout => logout::run(),
+ Self::Logout => logout::run(&settings),
Self::Register(r) => r.run(&settings).await,
Self::Key { base64 } => {
use atuin_client::encryption::{encode_key, load_key};