aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Palazhchenko <alexey.palazhchenko@gmail.com>2011-12-11 19:23:36 +0400
committerAlexey Palazhchenko <alexey.palazhchenko@gmail.com>2011-12-11 19:23:36 +0400
commitab4c30e6ac0507216eb210b27710000e549ce6e5 (patch)
treee5df87712151fa9949625cfcf015f8ac4eef209f
parent26ddccb6b4a7c2d57ff1ef14d3bab2246444cf5e (diff)
downloadgit-hooks-ab4c30e6ac0507216eb210b27710000e549ce6e5.tar.gz
git-hooks-ab4c30e6ac0507216eb210b27710000e549ce6e5.tar.bz2
Fix --about for signed-off-by hook.
-rwxr-xr-xgit_hooks/commit-msg/signed-off-by8
1 files changed, 1 insertions, 7 deletions
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 "$@"