From 7b49c30d8c31bb3c7b71c18be5e3fb3c56dfedf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Thu, 5 Jun 2025 12:02:30 +0200 Subject: [PATCH] Change the email prompting --- crates/meilisearch/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/meilisearch/src/main.rs b/crates/meilisearch/src/main.rs index e8bff7997..b5c9e0792 100644 --- a/crates/meilisearch/src/main.rs +++ b/crates/meilisearch/src/main.rs @@ -170,8 +170,8 @@ async fn prompt_for_contact_email() -> anyhow::Result> { 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()?;