|
|
@ -43,9 +43,11 @@ static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime) |
|
|
|
path = fmt("%s/%s", repo->path, ctx.cfg.agefile); |
|
|
|
path = fmt("%s/%s", repo->path, ctx.cfg.agefile); |
|
|
|
if (stat(path, &s) == 0) { |
|
|
|
if (stat(path, &s) == 0) { |
|
|
|
*mtime = read_agefile(path); |
|
|
|
*mtime = read_agefile(path); |
|
|
|
|
|
|
|
if (*mtime) { |
|
|
|
r->mtime = *mtime; |
|
|
|
r->mtime = *mtime; |
|
|
|
return 1; |
|
|
|
return 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ? |
|
|
|
path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ? |
|
|
|
repo->defbranch : "master"); |
|
|
|
repo->defbranch : "master"); |
|
|
|