Change the email prompting

This commit is contained in:
Clément Renault 2025-06-05 12:02:30 +02:00
parent 239851046d
commit 7b49c30d8c
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

View File

@ -170,8 +170,8 @@ async fn prompt_for_contact_email() -> anyhow::Result<Option<String>> {
return Ok(None);
}
println!("Would you mind providing your contact email for support and news? We will use it to contact you with news only.");
println!("Press enter to skip.");
println!("Enter your email to receive occasional updates and tips about Meilisearch.");
println!("Leave blank to skip.");
print!("contact email> ");
std::io::stdout().flush()?;