##// END OF EJS Templates
hgmerge: do not use file with markers in tools merging themselves...
Radoslaw Szkodzinski -
r1798:d610fe0e default
parent child Browse files
Show More
@@ -118,13 +118,13 b' fi'
118 if [ -n "$DISPLAY" ]; then
118 if [ -n "$DISPLAY" ]; then
119 # try using kdiff3, which is fairly nice
119 # try using kdiff3, which is fairly nice
120 if [ -n "$KDIFF3" ]; then
120 if [ -n "$KDIFF3" ]; then
121 $KDIFF3 --auto "$BASE" "$LOCAL" "$OTHER" -o "$LOCAL" || failure
121 $KDIFF3 --auto "$BASE" "$BACKUP" "$OTHER" -o "$LOCAL" || failure
122 success
122 success
123 fi
123 fi
124
124
125 # try using tkdiff, which is a bit less sophisticated
125 # try using tkdiff, which is a bit less sophisticated
126 if [ -n "$TKDIFF" ]; then
126 if [ -n "$TKDIFF" ]; then
127 $TKDIFF "$LOCAL" "$OTHER" -a "$BASE" -o "$LOCAL" || failure
127 $TKDIFF "$BACKUP" "$OTHER" -a "$BASE" -o "$LOCAL" || failure
128 success
128 success
129 fi
129 fi
130
130
General Comments 0
You need to be logged in to leave comments. Login now