Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
mergetools: use the correct tool for Beyond Compare 3 on Windows
Browse files Browse the repository at this point in the history
On Windows the bcompare tool launches a graphical program and does
not wait for it to terminate. A separate 'bcomp' tool is provided which
will wait for the view to exit so we use this instead.

Reported-by: Werner BEROUX <werner@beroux.com>
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
  • Loading branch information
patthoyts committed Oct 13, 2011
1 parent 2a9f868 commit 7e4bf67
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion mergetools/bc3
Expand Up @@ -16,5 +16,12 @@ merge_cmd () {
}

translate_merge_tool_path() {
echo bcompare
case $(uname -s) in
*MINGW*)
echo bcomp
;;
*)
echo bcompare
;;
esac
}

0 comments on commit 7e4bf67

Please sign in to comment.