From: Alexander Gavrilov Date: Wed, 16 Jul 2008 20:12:28 +0000 (+0400) Subject: Fix pre-commit hooks under MinGW/MSYS X-Git-Tag: v1.6.0-rc1~17^2~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fbc0e7ac1479b4262f6090098a4f68c3438aa94b;p=git.git Fix pre-commit hooks under MinGW/MSYS Apply the work-around for checking the executable permission of hook files not only on Cygwin, but on Windows in general. Signed-off-by: Alexander Gavrilov Signed-off-by: Shawn O. Pearce --- diff --git a/git-gui.sh b/git-gui.sh index 940677cbd..e3b666988 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -473,10 +473,10 @@ proc githook_read {hook_name args} { set pchook [gitdir hooks $hook_name] lappend args 2>@1 - # On Cygwin [file executable] might lie so we need to ask + # On Windows [file executable] might lie so we need to ask # the shell if the hook is executable. Yes that's annoying. # - if {[is_Cygwin]} { + if {[is_Windows]} { upvar #0 _sh interp if {![info exists interp]} { set interp [_which sh]