Let's try to address #1755 this way.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin 2018-07-10 13:20:27 +02:00 коммит произвёл Matthew John Cheetham
Родитель 977a5e51d3 8108a00de9
Коммит 932f761aa3
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -685,7 +685,11 @@ proc git_write {args} {
}
proc githook_read {hook_name args} {
set pchook [gitdir hooks $hook_name]
if {[package vcompare $::_git_version 2.5.0] >= 0} {
set pchook [git rev-parse --git-path "hooks/$hook_name"]
} else {
set pchook [gitdir hooks $hook_name]
}
lappend args 2>@1
# On Windows [file executable] might lie so we need to ask