summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1f5881b)
raw | patch | inline | side by side (parent: 1f5881b)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Fri, 28 Oct 2005 03:59:29 +0000 (05:59 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 29 Oct 2005 05:57:01 +0000 (22:57 -0700) |
On Linux, "mktemp tmp-XXXX" will not work. Also, redirect stderr on which,
so it does not complain too loudly. After all, this test should only be
executed when old binaries are available.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
so it does not complain too loudly. After all, this test should only be
executed when old binaries are available.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
t/t5501-old-fetch-and-upload.sh | patch | blob | history |
index 86df785495a5fc6967f88d10be62aa8d9af710b1..ada5130328d83b2c6014fdc6f78946cbb4a525bd 100755 (executable)
cd $(dirname $0) || exit 1
-tmp=$(mktemp tmp-XXXX)
+tmp=$(mktemp /tmp/tmp-XXXXXXXX)
retval=0
both) pgm="old-git-upload-pack"; replace="old-git-fetch-pack --exec=$pgm";;
esac
- if which $pgm; then
+ if which $pgm 2>/dev/null; then
echo "Testing with $pgm"
sed -e "s/git-fetch-pack/$replace/g" \
-e "s/# old fails/warn/" < t5500-fetch-pack.sh > $tmp