Torsten Bögershausen <tbo...@web.de> writes:

> Fix the broken && chain
>
> Reported-By: Eric Sunshine <sunsh...@sunshineco.com>
> Signed-off-by: Torsten Bögershausen <tbo...@web.de>
> ---

Please fold this kind of "oops fix breakages discovered in the
version that hasn't been reached 'next'" to the patch that
introduces the breakage, with "Helped-by: whom".

Thanks.

>  t/t0026-eol-config.sh | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/t/t0026-eol-config.sh b/t/t0026-eol-config.sh
> index 43a580a..4806969 100755
> --- a/t/t0026-eol-config.sh
> +++ b/t/t0026-eol-config.sh
> @@ -84,9 +84,9 @@ test_expect_success NATIVE_CRLF 'eol native is crlf' '
>  
>       rm -rf native_eol && mkdir native_eol &&
>       ( cd native_eol &&
> -     printf "*.txt text\n" > .gitattributes
> -     printf "one\r\ntwo\r\nthree\r\n" > filedos.txt
> -     printf "one\ntwo\nthree\n" > fileunix.txt
> +     printf "*.txt text\n" > .gitattributes &&
> +     printf "one\r\ntwo\r\nthree\r\n" > filedos.txt &&
> +     printf "one\ntwo\nthree\n" > fileunix.txt &&
>       git init &&
>       git config core.autocrlf false &&
>       git config core.eol native &&
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to