(cwd: string, pathValue: string)
| 170 | * Clears one cached CLI resolution for retry after a stale executable failed. |
| 171 | */ |
| 172 | export function clearCachedCliInvocation(cwd: string, pathValue: string) { |
| 173 | cliInvocationCache.delete(getCliInvocationCacheKey(cwd, pathValue)); |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Resolves the CLI invocation from local bins first, then the provided PATH. |
no test coverage detected