Skip to content

Commit 60468d6

Browse files
committed
git-gui: fix the mergetool launcher for the Beyond Compare tool.
When using Beyond Compare as the mergetool it fails to save the merged result correctly due to a quoting problem when executing the tool. This patch solves the quoting problem. Signed-off-by: Warren Falk <[email protected]> Signed-off-by: Pat Thoyts <[email protected]>
1 parent 9f31646 commit 60468d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/mergetool.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,9 @@ proc merge_resolve_tool2 {} {
189189
}
190190
bc3 {
191191
if {$base_stage ne {}} {
192-
set cmdline [list "$merge_tool_path" "$LOCAL" "$REMOTE" "$BASE" -mergeoutput="$MERGED"]
192+
set cmdline [list "$merge_tool_path" "$LOCAL" "$REMOTE" "$BASE" "-mergeoutput=$MERGED"]
193193
} else {
194-
set cmdline [list "$merge_tool_path" "$LOCAL" "$REMOTE" -mergeoutput="$MERGED"]
194+
set cmdline [list "$merge_tool_path" "$LOCAL" "$REMOTE" "-mergeoutput=$MERGED"]
195195
}
196196
}
197197
ecmerge {

0 commit comments

Comments
 (0)