diff options
-rwxr-xr-x | git-hooks | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -114,8 +114,7 @@ git-hooks run "$0" "$@"' > "${file}" function list_hooks { GITDIR=`git rev-parse --git-dir` - cd $GITDIR - cat hooks/pre-commit 2> /dev/null | grep 'git-hooks' > /dev/null 2> /dev/null + cat $GITDIR/hooks/pre-commit 2> /dev/null | grep 'git-hooks' > /dev/null 2> /dev/null if [ $? = 0 ] ; then echo "Git hooks ARE installed in this repository." echo "" |