diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-05-25 16:21:19 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-05-25 16:21:20 +0900 |
commit | 5d5b1473453400224ebb126bf3947e0a3276bdf5 (patch) | |
tree | aeae5eb3e79d29657fb5530c872f5c5ddac6e45e /builtin | |
parent | Merge branch 'jt/send-email-validate-errors-fix' (diff) | |
parent | init: fix bug regarding ~/ expansion in init.templateDir (diff) | |
download | tgif-5d5b1473453400224ebb126bf3947e0a3276bdf5.tar.xz |
Merge branch 'mt/init-template-userpath-fix'
Regression fix.
* mt/init-template-userpath-fix:
init: fix bug regarding ~/ expansion in init.templateDir
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/init-db.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/init-db.c b/builtin/init-db.c index c19b35f1e6..2167796ff2 100644 --- a/builtin/init-db.c +++ b/builtin/init-db.c @@ -212,8 +212,9 @@ static int create_default_files(const char *template_path, * values (since we've just potentially changed what's available on * disk). */ - git_config_get_value("init.templatedir", &init_template_dir); + git_config_get_pathname("init.templatedir", &init_template_dir); copy_templates(template_path, init_template_dir); + free((char *)init_template_dir); git_config_clear(); reset_shared_repository(); git_config(git_default_config, NULL); |