aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2009-08-11 10:09:06 +0200
committerLars Hjemli <hjemli@gmail.com>2009-08-24 10:22:57 +0200
commit6f3bf1ae1eb1d4114a1df0194b2236665a13bdac (patch)
tree29dd35a343ecb56844c7b8acffa6e89f5c153ee4
parentscan-tree: detect non-bare repository and stop scanning early (diff)
downloadcgit-6f3bf1ae1eb1d4114a1df0194b2236665a13bdac.tar.xz
cgit-6f3bf1ae1eb1d4114a1df0194b2236665a13bdac.zip
cgit.c: add support for cgitrc option 'repo.scan'
When specified, the specified path will be scanned for repositories. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r--cgit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c
index b0e1c44..97f5e08 100644
--- a/cgit.c
+++ b/cgit.c
@@ -136,6 +136,8 @@ void config_cb(const char *name, const char *value)
add_mimetype(name + 9, value);
else if (!strcmp(name, "repo.group"))
ctx.cfg.repo_group = xstrdup(value);
+ else if (!strcmp(name, "repo.scan"))
+ scan_tree(value);
else if (!strcmp(name, "repo.url"))
ctx.repo = cgit_add_repo(value);
else if (!strcmp(name, "repo.name"))