Re: [PATCH] t5562: avoid non-portable "export FOO=bar" construct

2018-07-29 Thread Max Kirillov
> Commit 6c213e863a ("http-backend: respect CONTENT_LENGTH for receive-pack", 2018-07-27) adds a test which uses the non-portable export construct. Replace it with "FOO=bar && export FOO" instead. Thank you. Apparently the check is performed by make -C t, and I did not run it like this since I onl

Re: [PATCH] t5562: avoid non-portable "export FOO=bar" construct

2018-07-29 Thread Ramsay Jones
On 29/07/18 04:13, Eric Sunshine wrote: > On Sat, Jul 28, 2018 at 6:51 PM Ramsay Jones > wrote: >> Commit 6c213e863a ("http-backend: respect CONTENT_LENGTH for >> receive-pack", 2018-07-27) adds a test which uses the non-portable >> export construct. Replace it with "FOO=bar && export FOO" inst

Re: [PATCH] t5562: avoid non-portable "export FOO=bar" construct

2018-07-28 Thread Eric Sunshine
On Sat, Jul 28, 2018 at 6:51 PM Ramsay Jones wrote: > Commit 6c213e863a ("http-backend: respect CONTENT_LENGTH for > receive-pack", 2018-07-27) adds a test which uses the non-portable > export construct. Replace it with "FOO=bar && export FOO" instead. > > Signed-off-by: Ramsay Jones > --- > Coul

[PATCH] t5562: avoid non-portable "export FOO=bar" construct

2018-07-28 Thread Ramsay Jones
Commit 6c213e863a ("http-backend: respect CONTENT_LENGTH for receive-pack", 2018-07-27) adds a test which uses the non-portable export construct. Replace it with "FOO=bar && export FOO" instead. Signed-off-by: Ramsay Jones --- Hi Junio, Could you please put this on top of the 'mk/http-backend