diff options
author | David Aguilar <davvid@gmail.com> | 2013-02-23 16:50:23 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-24 13:31:09 -0800 |
commit | 9a8a84c319e51eb25bfc0ee44d064617c310aa9e (patch) | |
tree | 96f237cf99c4e076c9ef03d5f471fee5d4b2b876 /templates/hooks--update.sample | |
parent | contrib/hooks/setgitperms.perl: use a lowercase "usage:" string (diff) | |
download | tgif-9a8a84c319e51eb25bfc0ee44d064617c310aa9e.tar.xz |
templates/hooks--update.sample: use a lowercase "usage:" string
Make the usage string consistent with Git.
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'templates/hooks--update.sample')
-rwxr-xr-x | templates/hooks--update.sample | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/hooks--update.sample b/templates/hooks--update.sample index 71ab04edc0..d84758373d 100755 --- a/templates/hooks--update.sample +++ b/templates/hooks--update.sample @@ -38,7 +38,7 @@ if [ -z "$GIT_DIR" ]; then fi if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "Usage: $0 <ref> <oldrev> <newrev>" >&2 + echo "usage: $0 <ref> <oldrev> <newrev>" >&2 exit 1 fi |