summaryrefslogtreecommitdiff
path: root/t/t5601-clone.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-10-18 20:49:51 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-10-18 20:49:51 (GMT)
commitf94a84c408babe92f951050a69e23df537302e54 (patch)
tree70f65fc10c388184b5127a1df933248a381d5ef6 /t/t5601-clone.sh
parent039048e6539623a80618247724eef977c6a855b7 (diff)
parent643f918d13906cbccdc5ad188767fc7895e30fc1 (diff)
downloadgit-f94a84c408babe92f951050a69e23df537302e54.zip
git-f94a84c408babe92f951050a69e23df537302e54.tar.gz
git-f94a84c408babe92f951050a69e23df537302e54.tar.bz2
Merge branch 'jk/clone-progress-to-stderr'
Some progress and diagnostic messages from "git clone" were incorrectly sent to the standard output stream, not to the standard error stream. * jk/clone-progress-to-stderr: clone: always set transport options clone: treat "checking connectivity" like other progress clone: send diagnostic messages to stderr
Diffstat (limited to 't/t5601-clone.sh')
-rwxr-xr-xt/t5601-clone.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh
index a3e3d48..8f3cd44 100755
--- a/t/t5601-clone.sh
+++ b/t/t5601-clone.sh
@@ -36,7 +36,7 @@ test_expect_success 'clone with excess parameters (2)' '
test_expect_success C_LOCALE_OUTPUT 'output from clone' '
rm -fr dst &&
- git clone -n "file://$(pwd)/src" dst >output &&
+ git clone -n "file://$(pwd)/src" dst >output 2>&1 &&
test $(grep Clon output | wc -l) = 1
'