aboutsummaryrefslogtreecommitdiff
path: root/git-hooks
diff options
context:
space:
mode:
Diffstat (limited to 'git-hooks')
-rwxr-xr-xgit-hooks8
1 files changed, 5 insertions, 3 deletions
diff --git a/git-hooks b/git-hooks
index 2756b5c..44f706d 100755
--- a/git-hooks
+++ b/git-hooks
@@ -116,12 +116,14 @@ 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 repository."
+ echo "Git hooks ARE installed in this repository."
+ echo ""
else
- echo -n "Git hooks are NOT installed in this repository."
+ echo "Git hooks are NOT installed in this repository."
+ echo ""
fi
- echo ' Listing User, Project, and Global hooks:'
+ echo 'Listing User, Project, and Global hooks:'
echo '---'
for dir in `hook_dirs`; do
echo "${dir}:"