aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/mod.rs')
-rw-r--r--src/command/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/mod.rs b/src/command/mod.rs
index 02950365..dc1f01fb 100644
--- a/src/command/mod.rs
+++ b/src/command/mod.rs
@@ -142,13 +142,13 @@ impl AtuinCmd {
}
Self::Sync { force } => sync::run(&client_settings, force, &mut db).await,
- Self::Login(l) => l.run(&client_settings),
+ Self::Login(l) => l.run(&client_settings).await,
Self::Logout => {
logout::run();
Ok(())
}
Self::Register(r) => {
- register::run(&client_settings, &r.username, &r.email, &r.password)
+ register::run(&client_settings, &r.username, &r.email, &r.password).await
}
Self::Key => {
use atuin_client::encryption::{encode_key, load_key};