Invalidate (delete) the tools cache
()
| 3999 | |
| 4000 | /// Invalidate (delete) the tools cache |
| 4001 | fn invalidate_tools_cache() { |
| 4002 | let cache_path = get_tools_cache_path(); |
| 4003 | let _ = fs::remove_file(&cache_path); |
| 4004 | } |
| 4005 | |
| 4006 | /// Validate that required tools are available before starting a scan |
| 4007 | /// Uses cache to skip full discovery on subsequent runs |
no test coverage detected