From 4d9d03cc714da2bdfd282e57175cad9e15e6121d Mon Sep 17 00:00:00 2001 From: Greyforge Admin Date: Tue, 19 May 2026 22:10:27 -0400 Subject: [PATCH] Align ripgrep Linux install hint --- src/cortex-cli/src/debug_cmd/handlers/ripgrep.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cortex-cli/src/debug_cmd/handlers/ripgrep.rs b/src/cortex-cli/src/debug_cmd/handlers/ripgrep.rs index 907ea3b83..c0335729f 100644 --- a/src/cortex-cli/src/debug_cmd/handlers/ripgrep.rs +++ b/src/cortex-cli/src/debug_cmd/handlers/ripgrep.rs @@ -127,7 +127,7 @@ pub async fn run_ripgrep(args: RipgrepArgs) -> Result<()> { println!(); println!("To install ripgrep:"); println!(" macOS: brew install ripgrep"); - println!(" Linux: apt install ripgrep / dnf install ripgrep"); + println!(" Linux: sudo apt install -y ripgrep / sudo dnf install -y ripgrep"); println!(" Windows: winget install BurntSushi.ripgrep.MSVC"); // Offer to install if --install flag was provided