| 301 | static const char *exec_path_value; |
| 302 | |
| 303 | void git_set_exec_path(const char *exec_path) |
| 304 | { |
| 305 | exec_path_value = exec_path; |
| 306 | /* |
| 307 | * Propagate this setting to external programs. |
| 308 | */ |
| 309 | setenv(EXEC_PATH_ENVIRONMENT, exec_path, 1); |
| 310 | } |
| 311 | |
| 312 | /* Returns the highest-priority location to look for git programs. */ |
| 313 | const char *git_exec_path(void) |
no outgoing calls
no test coverage detected