Skip to content

Commit 0af85f8

Browse files
davvidgitster
authored andcommitted
mergetools/meld: improve compatibiilty with Meld on macOS X
The macOS X fork of Meld[1] requires a "=" in the "--output" argument, as it uses a wrapper[2] script that munges the "--output" argument before calling into the common "meld" script. The macOS X wrapper script[2] accepts "--output=<filename>" only, despite the fact that the underlying meld code accepts both "--output <filename" and "--output=<filename>"[3]. All versions of meld which accept "--output" accept it in the "--output=<filename>" form, so use "--output=<file>" for maximum compatibility. [1] https://github.com/yousseb/meld [2] https://github.com/yousseb/meld/blob/master/osx/Meld [3] yousseb/meld#42 Reported-by: Matthew Groth <mgroth49@gmail.com> Helped-by: Samuel Lijin <sxlijin@gmail.com> Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent fd99e2b commit 0af85f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mergetools/meld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ merge_cmd () {
1010

1111
if test "$meld_has_output_option" = true
1212
then
13-
"$merge_tool_path" --output "$MERGED" \
13+
"$merge_tool_path" --output="$MERGED" \
1414
"$LOCAL" "$BASE" "$REMOTE"
1515
else
1616
"$merge_tool_path" "$LOCAL" "$MERGED" "$REMOTE"

0 commit comments

Comments
 (0)