Johannes Schindelin <johannes.schindelin@xxxxxx> writes: > This change is necessary to allow the files in .git/hooks/ to optionally > have the file extension `.exe` on Windows, as the file names are > hardcoded otherwise. Hmph. There is no longer ".com"? I briefly wondered if hooks/post-receive.{py,rb,...} would be good things to support, but I do not think we want to go there, primarily because we do not want to deal with "what happens when there are many?" As Peff pointed out while I was typing this message, ".exe" would be better spelled as STRIP_EXTENSION, I think. The resulting code would read naturally when you read the macro not as "please do strip extensions" boolean, but as "this extension is to be stripped" string, which is how it is used in the other site the macro is used (namely, strip_extension() called by handle_builtin()). > Signed-off-by: Johannes Schindelin <Johannes.Schindelin@xxxxxx> > --- > Published-As: https://github.com/dscho/git/releases/tag/exe-as-hook-v1 > Fetch-It-Via: git fetch https://github.com/dscho/git exe-as-hook-v1 > > run-command.c | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/run-command.c b/run-command.c > index 73bfba7ef9..45229ef052 100644 > --- a/run-command.c > +++ b/run-command.c > @@ -871,8 +871,14 @@ const char *find_hook(const char *name) > > strbuf_reset(&path); > strbuf_git_path(&path, "hooks/%s", name); > - if (access(path.buf, X_OK) < 0) > + if (access(path.buf, X_OK) < 0) { > +#ifdef STRIP_EXTENSION > + strbuf_addstr(&path, ".exe"); > + if (access(path.buf, X_OK) >= 0) > + return path.buf; > +#endif > return NULL; > + } > return path.buf; > } > > > base-commit: 4e59582ff70d299f5a88449891e78d15b4b3fabe