diff options
author | Alexey Palazhchenko <alexey.palazhchenko@gmail.com> | 2011-12-11 19:23:36 +0400 |
---|---|---|
committer | Alexey Palazhchenko <alexey.palazhchenko@gmail.com> | 2011-12-11 19:23:36 +0400 |
commit | ab4c30e6ac0507216eb210b27710000e549ce6e5 (patch) | |
tree | e5df87712151fa9949625cfcf015f8ac4eef209f /git_hooks | |
parent | 26ddccb6b4a7c2d57ff1ef14d3bab2246444cf5e (diff) | |
download | git-hooks-ab4c30e6ac0507216eb210b27710000e549ce6e5.tar.gz git-hooks-ab4c30e6ac0507216eb210b27710000e549ce6e5.tar.bz2 |
Fix --about for signed-off-by hook.
Diffstat (limited to 'git_hooks')
-rwxr-xr-x | git_hooks/commit-msg/signed-off-by | 8 |
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 "$@" |