From 21296dba150ba1c78a22d48d87e4cd69636b3ce1 Mon Sep 17 00:00:00 2001 From: dal Date: Wed, 12 Feb 2025 12:12:58 -0800 Subject: [PATCH] Update cli/src/commands/auth.rs Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- cli/src/commands/auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/commands/auth.rs b/cli/src/commands/auth.rs index c27d0ce5d..56cb0bcc6 100644 --- a/cli/src/commands/auth.rs +++ b/cli/src/commands/auth.rs @@ -114,7 +114,7 @@ pub async fn auth_with_args(args: AuthArgs) -> Result<()> { // Save credentials unless --no-save is specified if !args.no_save { - set_buster_credentials(buster_creds.clone()).await + set_buster_credentials(buster_creds).await .context("Failed to save credentials")?; println!("Credentials saved successfully!"); }