Update cli/src/commands/auth.rs

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
dal 2025-02-12 12:12:58 -08:00 committed by GitHub
parent 08134b3ba3
commit 21296dba15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ pub async fn auth_with_args(args: AuthArgs) -> Result<()> {
// Save credentials unless --no-save is specified // Save credentials unless --no-save is specified
if !args.no_save { if !args.no_save {
set_buster_credentials(buster_creds.clone()).await set_buster_credentials(buster_creds).await
.context("Failed to save credentials")?; .context("Failed to save credentials")?;
println!("Credentials saved successfully!"); println!("Credentials saved successfully!");
} }