diff options
| author | Junio C Hamano <gitster@pobox.com> | 2018-11-20 12:43:24 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2018-11-20 12:43:24 +0900 |
| commit | 774d44cc18fe23e384b14535df00f4ef2995f8dd (patch) | |
| tree | b46f6a292782a8f17c69fde97fb69b29fdb10bf3 | |
| parent | checkout: print something when checking out paths (diff) | |
| download | git-774d44cc18fe23e384b14535df00f4ef2995f8dd.tar.gz git-774d44cc18fe23e384b14535df00f4ef2995f8dd.zip | |
t0027: squelch checkout path run outside test_expect_* block
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rwxr-xr-x | t/t0027-auto-crlf.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t0027-auto-crlf.sh b/t/t0027-auto-crlf.sh index beb5927f77..3587e454f1 100755 --- a/t/t0027-auto-crlf.sh +++ b/t/t0027-auto-crlf.sh @@ -293,9 +293,9 @@ checkout_files () { do rm crlf_false_attr__$f.txt && if test -z "$ceol"; then - git checkout crlf_false_attr__$f.txt + git checkout -- crlf_false_attr__$f.txt else - git -c core.eol=$ceol checkout crlf_false_attr__$f.txt + git -c core.eol=$ceol checkout -- crlf_false_attr__$f.txt fi done |
