Skip to content

Commit

Permalink
Merge pull request #1757 from dscho/git-gui-hooks-path
Browse files Browse the repository at this point in the history
git-gui: respect modern hooks paths
  • Loading branch information
dscho committed Jul 11, 2018
2 parents 83af493 + 0a6f41b commit 27a24fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion git-gui/git-gui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,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
Expand Down

0 comments on commit 27a24fd

Please sign in to comment.