submodule: Fix t7400, t7405, t7406 for msysGit

Again, avoid using echo (which issues DOS line endings on msysGit) to not mix
with Unix line-endings issued by git built-ins, even if this is at the cost of
calling an external executable (cat) instead of a shell built-in (echo).
This commit is contained in:
Sebastian Schuberth
2011-04-28 00:30:49 +02:00
committed by nalla
parent c25fa2e0f2
commit 052d6c8ec4
2 changed files with 8 additions and 4 deletions

View File

@@ -59,7 +59,9 @@ GIT_QUIET=
say () {
if test -z "$GIT_QUIET"
then
printf '%s\n' "$*"
cat <<EOF
$*
EOF
fi
}