aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin C Meyer <ben@meyerhome.net>2010-06-19 12:31:04 -0400
committerBenjamin C Meyer <ben@meyerhome.net>2010-06-19 12:31:04 -0400
commitb25ce6eb47bbe234cb162ebb3e8789d202c9e127 (patch)
treee5f59f800f93f23770f53c17fead4d88c9264595
parent6abef8eb1f021d91014b6a680f82fdfeaebec526 (diff)
downloadgit-hooks-b25ce6eb47bbe234cb162ebb3e8789d202c9e127.tar.gz
git-hooks-b25ce6eb47bbe234cb162ebb3e8789d202c9e127.tar.bz2
When printing the status claify that git-hooks is not installed in the current repository, not in general.
Signed-off-by: Benjamin C Meyer <ben@meyerhome.net>
-rwxr-xr-xgit-hooks4
1 files 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:'