aboutsummaryrefslogtreecommitdiff
path: root/git-tag.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-12-22 22:48:46 -0800
committerJunio C Hamano <junkio@cox.net>2006-12-22 22:48:46 -0800
commita6782bc572530be6f7d799f18d3e79dd6a406294 (patch)
treefc5a837aa97c09c3fa068a249aadc1b22bc51297 /git-tag.sh
parent95ca1c6cb76ae01528f70c5ed437a79887a60775 (diff)
downloadgit-a6782bc572530be6f7d799f18d3e79dd6a406294.tar.gz
git-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-xgit-tag.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/git-tag.sh b/git-tag.sh
index 36cd6aa25..e1bfa82f1 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