diff options
author | Junio C Hamano <junkio@cox.net> | 2006-12-22 22:48:46 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-22 22:48:46 -0800 |
commit | a6782bc572530be6f7d799f18d3e79dd6a406294 (patch) | |
tree | fc5a837aa97c09c3fa068a249aadc1b22bc51297 /git-tag.sh | |
parent | Really fix headers for __FreeBSD__ (diff) | |
download | tgif-a6782bc572530be6f7d799f18d3e79dd6a406294.tar.xz |
git-tag: lose exit after die
We are not running under /bin/resurrection shell ;-)
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-tag.sh')
-rwxr-xr-x | git-tag.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/git-tag.sh b/git-tag.sh index 36cd6aa256..e1bfa82f1e 100755 --- a/git-tag.sh +++ b/git-tag.sh @@ -40,7 +40,6 @@ do message="$1" if test "$#" = "0"; then die "error: option -m needs an argument" - exit 2 else message_given=1 fi @@ -50,7 +49,6 @@ do shift if test "$#" = "0"; then die "error: option -F needs an argument" - exit 2 else message="$(cat "$1")" message_given=1 |