diff options
author | Benjamin C Meyer <ben@meyerhome.net> | 2012-01-24 21:01:56 -0800 |
---|---|---|
committer | Benjamin C Meyer <ben@meyerhome.net> | 2012-01-24 21:01:56 -0800 |
commit | 8425d932263e9d2302bd63c08ec9d088f9e32157 (patch) | |
tree | 0b622e3f99d3c7bfe352eba6328e9b48c9f0761e | |
parent | 0a9311b039b7af07827e1c2f5a2d53ebca212697 (diff) | |
parent | ab4c30e6ac0507216eb210b27710000e549ce6e5 (diff) | |
download | git-hooks-8425d932263e9d2302bd63c08ec9d088f9e32157.tar.gz git-hooks-8425d932263e9d2302bd63c08ec9d088f9e32157.tar.bz2 |
Merge pull request #6 from AlekSi/master
Fix --about for signed-off-by hook
-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 "$@" |