#!/bin/sh
## A little script to make it easier to launch DiffMerge from the command line.
## Install this script into a folder in your path, such as /usr/bin or /usr/local/bin.
##
## Version 4.2.1.1013
## Copyright (C) 2003-2015 SourceGear LLC. All Rights Reserved.
##############################################################################
## Change DIFFMERGE_PATH to point to where you installed DiffMerge
DIFFMERGE_PATH=/Users/antrinh/Applications/DiffMerge.app
## The actual executable is hidden inside the .app bundle.
DIFFMERGE_EXE=${DIFFMERGE_PATH}/Contents/MacOS/DiffMerge
## Launch DiffMerge using the given command line arguments. Use --help for
## additional information or see the man page distributed along with this
## shell script.
exec ${DIFFMERGE_EXE} --nosplash "$@"
using OSX 10.12.6
Any pointers would be great.
Thanks
I try to set diffmerge ad a diff tool and svnX popups with "Can’t find tool ‘diffmerge.sh’ required to use DiffMerge."svn and diffmerge.sh are in local directory which is exported through .profile (seems ok, since i can execute that diffmerge.sh to open Diffmerge from command line)