From e3b99af80f710b4d14490b5777ba194bf065df59 Mon Sep 17 00:00:00 2001 From: Alexander Mohr Date: Fri, 1 Aug 2025 21:11:50 +0200 Subject: [PATCH] add rbw hint to tool not found msg fixes #95 --- examples/worf-warden/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/worf-warden/src/main.rs b/examples/worf-warden/src/main.rs index 8b29967..4fa8c59 100644 --- a/examples/worf-warden/src/main.rs +++ b/examples/worf-warden/src/main.rs @@ -174,7 +174,7 @@ fn rbw(cmd: &str, args: Option>) -> Result { let output = command .output() - .map_err(|e| format!("Failed to execute command: {e}"))?; + .map_err(|e| format!("Failed to execute rbw command: {e}"))?; if !output.status.success() { let stderr = String::from_utf8_lossy(&output.stderr);