diff options
author | Benjamin C Meyer <ben@meyerhome.net> | 2010-06-19 12:31:04 -0400 |
---|---|---|
committer | Benjamin C Meyer <ben@meyerhome.net> | 2010-06-19 12:31:04 -0400 |
commit | b25ce6eb47bbe234cb162ebb3e8789d202c9e127 (patch) | |
tree | e5f59f800f93f23770f53c17fead4d88c9264595 | |
parent | 6abef8eb1f021d91014b6a680f82fdfeaebec526 (diff) | |
download | git-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-x | git-hooks | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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:' |