comparison easyhg-extdiff.sh @ 292:a1c8630a0057

Return success if the external diff/merge _is_ found, not if it isn't!
author Chris Cannam
date Mon, 21 Feb 2011 18:16:15 +0000
parents 24820581e532
children ea62eb083ed4
comparison
equal deleted inserted replaced
289:37f67999b661 292:a1c8630a0057
24 if [ -x "$od" ]; then 24 if [ -x "$od" ]; then
25 found=true 25 found=true
26 "$od" "$1" "$2" | cat 26 "$od" "$1" "$2" | cat
27 fi 27 fi
28 fi 28 fi
29 [ -z "$found" ] 29 [ -n "$found" ]
30 30