From 4fc24cb6912453d911f27032f3bbf9930a8054b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Renault?= Date: Thu, 5 Jun 2025 14:43:46 +0200 Subject: [PATCH] Improve prompting again --- crates/meilisearch/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/meilisearch/src/main.rs b/crates/meilisearch/src/main.rs index 4e2b25ffd..022395397 100644 --- a/crates/meilisearch/src/main.rs +++ b/crates/meilisearch/src/main.rs @@ -179,9 +179,9 @@ async fn prompt_for_contact_email() -> anyhow::Result> { 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();