From: Alexey Palazhchenko Date: Sun, 11 Dec 2011 15:23:36 +0000 (+0400) Subject: Fix --about for signed-off-by hook. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ab4c30e6ac0507216eb210b27710000e549ce6e5;p=git-hooks.git Fix --about for signed-off-by hook. --- diff --git a/git_hooks/commit-msg/signed-off-by b/git_hooks/commit-msg/signed-off-by index 5dbafb4..a1ba4e6 100755 --- a/git_hooks/commit-msg/signed-off-by +++ b/git_hooks/commit-msg/signed-off-by @@ -36,13 +36,7 @@ function run_test case "${1}" in --about ) - echo -n "Spell check the commit message using aspell which is: " - which aspell > /dev/null - if [ ! $? -eq 0 ] ; then - echo "not installed" - else - echo "installed" - fi + echo -n "Checks commit message for presence of Signed-off-by line." ;; * ) run_test "$@"