Change behavour when tool is missing

Dont die when tool is missing
This commit is contained in:
Gvidas Juknevičius 2026-01-11 21:17:36 +02:00
parent 1b0af636df
commit 2aa0e5a1e8

View File

@ -55,7 +55,9 @@ impl Cache {
} }
} }
} }
anyhow::bail!("Tool {} was not found", tool_path) // anyhow::bail!("Tool {} was not found", tool_path)
log::error!("Tool {tool_path:?} doesnt exist!");
Ok(())
} }
pub fn init(&mut self) -> Result<Receiver<Message>> { pub fn init(&mut self) -> Result<Receiver<Message>> {
// Check for missing tooling // Check for missing tooling