diff options
author | freku045@student.liu.se <freku045@student.liu.se> | 2005-12-13 23:30:32 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-14 02:53:44 -0800 |
commit | 9678faaaffd3eba057bf1cb643399c5a5365a611 (patch) | |
tree | 7388bf328627ed93535f6047cb01258352abed86 /git-repack.sh | |
parent | 3ae39ab232a103c2a4284a6701be62d95f0d0987 (diff) | |
download | git-9678faaaffd3eba057bf1cb643399c5a5365a611.tar.gz |
git-repack: Usage string clean-up, emit usage at incorrect invocation
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-repack.sh')
-rwxr-xr-x | git-repack.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-repack.sh b/git-repack.sh index 430ddc5a70..1fafb6ecf6 100755 --- a/git-repack.sh +++ b/git-repack.sh @@ -3,6 +3,7 @@ # Copyright (c) 2005 Linus Torvalds # +USAGE='[-a] [-d] [-l] [-n]' . git-sh-setup no_update_info= all_into_one= remove_redundant= local= @@ -13,7 +14,7 @@ do -a) all_into_one=t ;; -d) remove_redundant=t ;; -l) local=t ;; - *) break ;; + *) usage ;; esac shift done |