Re: [PATCH v3 2/2] t/t8003-blame-corner-cases.sh: Use here documents

2016-07-18 Thread Junio C Hamano
Mike Hommey writes: > Somehow, this test was using: > > { > echo A > echo B > } > file > > block to feed file contents. This changes those to the form most common > in git test scripts: > > cat >file <<-\EOF > A > B > EOF > > Signed-off-by: Mike Hommey

Re: [PATCH v3 2/2] t/t8003-blame-corner-cases.sh: Use here documents

2016-07-16 Thread Johannes Schindelin
Hi Mike, On Sat, 16 Jul 2016, Mike Hommey wrote: > Somehow, this test was using: > > { > echo A > echo B > } > file > > block to feed file contents. This changes those to the form most common > in git test scripts: > > cat >file <<-\EOF > A > B > EOF > > Signed-off-by: Mike

[PATCH v3 2/2] t/t8003-blame-corner-cases.sh: Use here documents

2016-07-15 Thread Mike Hommey
Somehow, this test was using: { echo A echo B } > file block to feed file contents. This changes those to the form most common in git test scripts: cat >file <<-\EOF A B EOF Signed-off-by: Mike Hommey --- t/t8003-blame-corner-cases.sh | 34