(resource: &str, operation: &str, executable: &str, directory: &Path)
| 875 | } |
| 876 | |
| 877 | fn verify_executable(resource: &str, operation: &str, executable: &str, directory: &Path) { |
| 878 | if canonicalize_which(executable, Some(directory)).is_err() { |
| 879 | info!("{}", t!("discovery.commandDiscovery.executableNotFound", resource = resource, operation = operation, executable = executable)); |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | fn add_resources_to_lookup_table(adapted_resources: &DiscoveryResourceCache) |
| 884 | { |
no test coverage detected