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);