Skip to content

Commit

Permalink
Merge branch 'da/mergetools-p4'
Browse files Browse the repository at this point in the history
* da/mergetools-p4:
  mergetools/p4merge: Handle "/dev/null"
  • Loading branch information
peff committed Oct 25, 2012
2 parents 4cd31a6 + 3facc60 commit 33d3c6b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions mergetools/p4merge
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
diff_cmd () {
# p4merge does not like /dev/null
rm_local=
rm_remote=
if test "/dev/null" = "$LOCAL"
then
LOCAL="./p4merge-dev-null.LOCAL.$$"
>"$LOCAL"
rm_local=true
fi
if test "/dev/null" = "$REMOTE"
then
REMOTE="./p4merge-dev-null.REMOTE.$$"
>"$REMOTE"
rm_remote=true
fi

"$merge_tool_path" "$LOCAL" "$REMOTE"

if test -n "$rm_local"
then
rm -f "$LOCAL"
fi
if test -n "$rm_remote"
then
rm -f "$REMOTE"
fi
}

merge_cmd () {
Expand Down

0 comments on commit 33d3c6b

Please sign in to comment.