summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-02-06 01:09:26 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2015-02-06 01:09:26 +0100
commitcc36f424d46f7c11ebff1dbf23df3be3d211c9b4 (patch)
tree25374a211c80031255841baf3cd5df89f1ce6f62
parentbebd2017370294a468ed6cf02c9de35973a9e4f7 (diff)
downloadlibgit2-cmn/template-path.tar.gz
repository: parse init.templatedir as a pathcmn/template-path
This is a path so we must use the path getter so we get the tilde expansion done.
-rw-r--r--src/repository.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/repository.c b/src/repository.c
index 433754489..c9275078f 100644
--- a/src/repository.c
+++ b/src/repository.c
@@ -1265,7 +1265,8 @@ static int repo_init_structure(
if (opts->template_path)
tdir = opts->template_path;
else if ((error = git_config_open_default(&cfg)) >= 0) {
- error = git_config_get_string(&tdir, cfg, "init.templatedir");
+ if (!git_config_get_path(&template_buf, cfg, "init.templatedir"))
+ tdir = template_buf.ptr;
giterr_clear();
}