Re: [PATCH v3 1/4] mergetool--lib: simplify command expressions

2013-01-29 Thread Junio C Hamano
David Aguilar writes: > Update variable assignments to always use $(command "$arg") > in their RHS instead of "$(command "$arg")" as the latter > is harder to read. Make get_merge_tool_cmd() simpler by > avoiding "echo" and $(command) substitutions completely. > > Signed-off-by: David Aguilar >

[PATCH v3 1/4] mergetool--lib: simplify command expressions

2013-01-29 Thread David Aguilar
Update variable assignments to always use $(command "$arg") in their RHS instead of "$(command "$arg")" as the latter is harder to read. Make get_merge_tool_cmd() simpler by avoiding "echo" and $(command) substitutions completely. Signed-off-by: David Aguilar --- This is a replacement patch for