2023-02-24 01:09:20 +01:00
|
|
|
#include "git-compat-util.h"
|
2022-10-04 19:32:27 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "fsmonitor-ipc.h"
|
|
|
|
|
|
|
|
const char *fsmonitor_ipc__get_path(struct repository *r) {
|
|
|
|
static char *ret;
|
|
|
|
if (!ret)
|
|
|
|
ret = git_pathdup("fsmonitor--daemon.ipc");
|
|
|
|
return ret;
|
|
|
|
}
|