Skip to content

Commit

Permalink
Handle --about argument so not to cause garbage on the console for gi…
Browse files Browse the repository at this point in the history
…t-hooks
  • Loading branch information
icefox committed Jun 19, 2010
1 parent 84098df commit 72eb2a7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions git_hooks/helper/findstyleerrors.sh
@@ -1,10 +1,16 @@
#!/bin/sh
#
# Hack of a script to find some common style errors
#
# Coding style: http://code.google.com/p/arora/wiki/CodingStyle
#

case "${1}" in
--about )
echo "Hack of a script to find some common style errors."
exit 0
;;
esac


args=$1
if [ -z "${args}" ] ; then
args="*"
Expand Down

0 comments on commit 72eb2a7

Please sign in to comment.