diff options
author | Benjamin C Meyer <ben@meyerhome.net> | 2011-09-05 22:38:45 -0400 |
---|---|---|
committer | Benjamin C Meyer <ben@meyerhome.net> | 2011-09-05 22:39:50 -0400 |
commit | f246d4b42fef6cef320c333085d326a343802afe (patch) | |
tree | 2b169d98d0c5479ee5e74de763a4de3d31be1038 | |
parent | 478f5543674fd92006fd07ea3dfefe743f37b7fc (diff) | |
download | git-hooks-f246d4b42fef6cef320c333085d326a343802afe.tar.gz git-hooks-f246d4b42fef6cef320c333085d326a343802afe.tar.bz2 |
Change my mind on the previous commit making the new default .githooks
not .hooks to match other .git* files/directories.
Signed-off-by: Benjamin C Meyer <ben@meyerhome.net>
-rwxr-xr-x | git-hooks | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ function hook_dirs GITDIR=`git rev-parse --git-dir` cd $GITDIR/.. echo "${PWD}/git_hooks${hook}" - echo "${PWD}/.hooks${hook}" + echo "${PWD}/.githooks${hook}" eval echo "`git config hooks.global`"${hook} } |