diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-15 13:02:25 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-15 13:03:20 -0800 |
commit | c6f60f991f29ce1140b9dede1185562fbffe2549 (patch) | |
tree | d3febbb55be91d8192fd0a364b2f93dd5be10d93 /git-applypatch.sh | |
parent | 6677c4665af2d73f670bec382bc82d0f2e9513fb (diff) | |
download | git-c6f60f991f29ce1140b9dede1185562fbffe2549.tar.gz git-c6f60f991f29ce1140b9dede1185562fbffe2549.tar.xz |
applymbox: typofix
Sorry, I broke this command completely with the stupid typo.
Noticed by Marco Costalba.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-applypatch.sh')
-rwxr-xr-x | git-applypatch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-applypatch.sh b/git-applypatch.sh index e8ba34a0a..12cab1e0d 100755 --- a/git-applypatch.sh +++ b/git-applypatch.sh @@ -14,7 +14,7 @@ USAGE='<msg> <patch> <info> [<signoff>]' . git-sh-setup -case "$#" in 3|4) usage ;; esac +case "$#" in 3|4) ;; *) usage ;; esac final=.dotest/final-commit ## |