diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2006-10-02 06:36:15 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-01 21:42:20 -0700 |
commit | 367337040d8d39294bf676672dfefc542717195b (patch) | |
tree | c68610e145a5738fa96261e5f161c812e55da0b2 | |
parent | b431b2822f361efcb940adbc1f2097e122e90ed9 (diff) | |
download | git-367337040d8d39294bf676672dfefc542717195b.tar.gz |
Do not create tag leading directories since git update-ref does it.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | git-tag.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/git-tag.sh b/git-tag.sh index a3f1819b0e..ac269e3277 100755 --- a/git-tag.sh +++ b/git-tag.sh @@ -112,6 +112,5 @@ if [ "$annotate" ]; then object=$(git-mktag < "$GIT_DIR"/TAG_TMP) fi -leading=`expr "refs/tags/$name" : '\(.*\)/'` && -mkdir -p "$GIT_DIR/$leading" && -GIT_DIR="$GIT_DIR" git update-ref "refs/tags/$name" "$object" "$prev" +git update-ref "refs/tags/$name" "$object" "$prev" + |