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 Johannes Schindelin
parent 6ae3abf159
commit dcd8edea1d
2 changed files with 8 additions and 4 deletions

View file

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

View file

@ -264,9 +264,11 @@ cmd_add()
if test -z "$force" && ! git add --dry-run --ignore-missing "$path" > /dev/null 2>&1
then
eval_gettextln "The following path is ignored by one of your .gitignore files:
\$path
Use -f if you really want to add it." >&2
cat >&2 <<EOF
The following path is ignored by one of your .gitignore files:
$(eval_gettextln $path)
Use -f if you really want to add it.
EOF
exit 1
fi