add rbw hint to tool not found msg

fixes #95
This commit is contained in:
Alexander Mohr 2025-08-01 21:11:50 +02:00
parent ff552eb843
commit e3b99af80f

View file

@ -174,7 +174,7 @@ fn rbw(cmd: &str, args: Option<Vec<&str>>) -> Result<String, String> {
let output = command let output = command
.output() .output()
.map_err(|e| format!("Failed to execute command: {e}"))?; .map_err(|e| format!("Failed to execute rbw command: {e}"))?;
if !output.status.success() { if !output.status.success() {
let stderr = String::from_utf8_lossy(&output.stderr); let stderr = String::from_utf8_lossy(&output.stderr);