From b25ce6eb47bbe234cb162ebb3e8789d202c9e127 Mon Sep 17 00:00:00 2001 From: Benjamin C Meyer Date: Sat, 19 Jun 2010 12:31:04 -0400 Subject: When printing the status claify that git-hooks is not installed in the current repository, not in general. Signed-off-by: Benjamin C Meyer --- git-hooks | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-hooks b/git-hooks index 39bb0d1..9c40e14 100755 --- a/git-hooks +++ b/git-hooks @@ -110,9 +110,9 @@ function list_hooks done cat .git/hooks/pre-commit | grep 'git-hooks' > /dev/null 2> /dev/null if [ $? = 0 ] ; then - echo -n "Git hooks ARE installed in this project." + echo -n "Git hooks ARE installed in this repository." else - echo -n "Git hooks are NOT installed." + echo -n "Git hooks are NOT installed in this repository." fi echo ' Listing User, Project, and Global hooks:' -- cgit v1.2.3