diff options
author | Pat Thoyts <patthoyts@users.sourceforge.net> | 2011-02-03 15:31:44 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-02-07 14:27:46 -0800 |
commit | c91897b3b074d5185c3897e7afc41aa091f6ec66 (patch) | |
tree | 4725432473252fc93fa232d48fd797529777f591 /t | |
parent | 97a853d34baef41f6d235ba49bf390d063fbd9df (diff) | |
download | git-c91897b3b074d5185c3897e7afc41aa091f6ec66.tar.gz git-c91897b3b074d5185c3897e7afc41aa091f6ec66.tar.xz |
t7407: fix line endings for mingw build
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t7407-submodule-foreach.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t7407-submodule-foreach.sh b/t/t7407-submodule-foreach.sh index d8ad25036..e5be13c27 100755 --- a/t/t7407-submodule-foreach.sh +++ b/t/t7407-submodule-foreach.sh @@ -238,6 +238,10 @@ test_expect_success 'ensure "status --cached --recursive" preserves the --cached ) && git submodule status --cached --recursive -- nested1 > ../actual ) && + if test_have_prereq MINGW + then + dos2unix actual + fi && test_cmp expect actual ' |