|
1
|
#include "git-compat-util.h" |
|
2
|
#include "config.h" |
|
3
|
#include "fsmonitor-ipc.h" |
|
4
|
#include "path.h" |
|
5
|
|
|
6
|
const char *fsmonitor_ipc__get_path(struct repository *r) { |
|
7
|
static char *ret; |
|
8
|
if (!ret) |
|
9
|
ret = repo_git_path(r, "fsmonitor--daemon.ipc"); |
|
10
|
return ret; |
|
11
|
} |