Improve prompting again

This commit is contained in:
Clément Renault 2025-06-05 14:43:46 +02:00
parent 8bc8484e95
commit 4fc24cb691
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

View File

@ -179,9 +179,9 @@ async fn prompt_for_contact_email() -> anyhow::Result<Option<String>> {
return Ok(None);
}
println!("Enter your email to receive occasional updates and tips about Meilisearch.");
println!("Leave blank to skip.");
print!("contact email> ");
println!("Stay up to date! Get monthly updates about new features and tips to get the most out of Meilisearch.");
println!("You can use the `--contact-email` parameter to disable this prompt.");
print!("Enter your email or leave blank to skip> ");
std::io::stdout().flush()?;
let mut email = String::new();