Re: [PATCH] submodule-config: correct error reporting for invalid ignore value

2017-03-15 Thread Stefan Beller
On Wed, Mar 15, 2017 at 12:52 PM, Junio C Hamano wrote: > Junio C Hamano writes: > >> Stefan Beller writes: >> >>> As 'var' contains the whole value we get error messages that repeat >>> the section and key currently: >>> >>> warning: Invalid parameter 'true' for config option >>> 'submodule.su

Re: [PATCH] submodule-config: correct error reporting for invalid ignore value

2017-03-15 Thread Junio C Hamano
Junio C Hamano writes: > Stefan Beller writes: > >> As 'var' contains the whole value we get error messages that repeat >> the section and key currently: >> >> warning: Invalid parameter 'true' for config option >> 'submodule.submodule.plugins/hooks.ignore.ignore' >> >> Fix this by only giving

Re: [PATCH] submodule-config: correct error reporting for invalid ignore value

2017-03-15 Thread Stefan Beller
On Wed, Mar 15, 2017 at 11:29 AM, Junio C Hamano wrote: > Stefan Beller writes: > >> As 'var' contains the whole value we get error messages that repeat >> the section and key currently: >> >> warning: Invalid parameter 'true' for config option >> 'submodule.submodule.plugins/hooks.ignore.ignore

Re: [PATCH] submodule-config: correct error reporting for invalid ignore value

2017-03-15 Thread Junio C Hamano
Stefan Beller writes: > As 'var' contains the whole value we get error messages that repeat > the section and key currently: > > warning: Invalid parameter 'true' for config option > 'submodule.submodule.plugins/hooks.ignore.ignore' > > Fix this by only giving the section name in the warning. >

[PATCH] submodule-config: correct error reporting for invalid ignore value

2017-03-14 Thread Stefan Beller
As 'var' contains the whole value we get error messages that repeat the section and key currently: warning: Invalid parameter 'true' for config option 'submodule.submodule.plugins/hooks.ignore.ignore' Fix this by only giving the section name in the warning. Signed-off-by: Stefan Beller --- su