Skip to content

Commit 7b7f92e

Browse files
committed
t030[02]: work around CR/LF issue
It is the old shell-script issue we had in a few other tests already. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 5c1bcba commit 7b7f92e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

t/lib-credential.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ check() {
99
read_chunk >expect-stderr &&
1010
test-credential "$@" <stdin >stdout 2>stderr &&
1111
test_cmp expect-stdout stdout &&
12+
if test_have_prereq MINGW
13+
then
14+
dos2unix stderr
15+
fi &&
1216
test_cmp expect-stderr stderr
1317
}
1418

0 commit comments

Comments
 (0)