This commit is contained in:
Gregor Jasny 2018-07-01 16:55:03 +00:00 committed by GitHub
commit 2b8f22f9e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,11 @@
## araxis-merge
Plugin for Araxis Merge, an advanced 2 and 3-way file comparison (diff), merging and folder synchronization tool.
### Requirements
* [Araxis Merge](http://www.araxis.com/merge/)
### Usage
* When this plugin is enabled the Araxis Merge utilities are added to `PATH`

View file

@ -0,0 +1,16 @@
# Araxis Merge Utilities
if [[ "$OSTYPE" = darwin* ]]; then
local _araxis_merge_darwin_paths > /dev/null 2>&1
_araxis_merge_darwin_paths=(
"$HOME/Applications/Araxis Merge.app/Contents/Utilities"
"/Applications/Araxis Merge.app/Contents/Utilities"
)
for _araxis_merge_path in $_araxis_merge_darwin_paths; do
if [[ -d "$_araxis_merge_path" ]]; then
export PATH="${_araxis_merge_path}":$PATH
break
fi
done
fi