From 3593f5199030ca599a81ef3f39331ac0a2b8feba Mon Sep 17 00:00:00 2001 From: YummyOreo Date: Tue, 6 Jun 2023 00:58:38 -0500 Subject: [PATCH] feat: do not allow empty passwords durring account creation (#1029) * feat: do not allow empty passwords durring account creation * refactor: rustfmt --- atuin/src/command/client/account/register.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/atuin/src/command/client/account/register.rs b/atuin/src/command/client/account/register.rs index 6b51fac8..d306a141 100644 --- a/atuin/src/command/client/account/register.rs +++ b/atuin/src/command/client/account/register.rs @@ -1,5 +1,5 @@ use clap::Parser; -use eyre::Result; +use eyre::{bail, Result}; use tokio::{fs::File, io::AsyncWriteExt}; use atuin_client::{api_client, settings::Settings}; @@ -35,6 +35,10 @@ pub async fn run( .clone() .unwrap_or_else(super::login::read_user_password); + if password.is_empty() { + bail!("please provide a password"); + } + let session = api_client::register(settings.sync_address.as_str(), &username, &email, &password).await?;