summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 71e66ec)
raw | patch | inline | side by side (parent: 71e66ec)
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | |
Sat, 9 Jun 2007 06:31:12 +0000 (08:31 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 9 Jun 2007 17:07:29 +0000 (10:07 -0700) |
unzip -v on (at least) Ubuntu prints a screenful of version info
to stdout. Get rid of it since we only want to know if unzip is
installed or not.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
to stdout. Get rid of it since we only want to know if unzip is
installed or not.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
t/t5000-tar-tree.sh | patch | blob | history |
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh
index 5500505d8b86fad4d69fe3bca69b8d023737e79e..a6c5bf6ab4c32b123bd7d678d7bd3c5cef6f5cb0 100755 (executable)
--- a/t/t5000-tar-tree.sh
+++ b/t/t5000-tar-tree.sh
'git-archive --format=zip' \
'git-archive --format=zip HEAD >d.zip'
-$UNZIP -v 2>/dev/null
+$UNZIP -v >/dev/null 2>&1
if [ $? -eq 127 ]; then
echo "Skipping ZIP tests, because unzip was not found"
test_done