diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2005-10-11 15:15:15 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-11 15:15:15 -0700 |
commit | 0a81552e06037a57eeb1f784564a3ac092f60dfb (patch) | |
tree | fbc5763f7f2c5648bb28c414d74445a305f48895 /t/t5000-tar-tree.sh | |
parent | dc1b5ea8781644203213e83b74cf3b432d88d067 (diff) | |
download | git-0a81552e06037a57eeb1f784564a3ac092f60dfb.tar.gz |
Use git-update-ref and git-symbolic-ref in tests
This makes all tests pass on cygwin.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t5000-tar-tree.sh')
-rwxr-xr-x | t/t5000-tar-tree.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index 5dffb8e1e5..4db1bb1142 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -41,8 +41,8 @@ test_expect_success \ find a -type l | xargs git-update-index --add && treeid=`git-write-tree` && echo $treeid >treeid && - TZ=GMT GIT_COMMITTER_DATE="2005-05-27 22:00:00" \ - git-commit-tree $treeid </dev/null >.git/HEAD' + git-update-ref HEAD $(TZ=GMT GIT_COMMITTER_DATE="2005-05-27 22:00:00" \ + git-commit-tree $treeid </dev/null)' test_expect_success \ 'git-tar-tree' \ @@ -59,7 +59,7 @@ test_expect_success \ test_expect_success \ 'git-get-tar-commit-id' \ 'git-get-tar-commit-id <b.tar >b.commitid && - diff .git/HEAD b.commitid' + diff .git/$(git-symbolic-ref HEAD) b.commitid' test_expect_success \ 'extract tar archive' \ |