0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-19 19:42:18 +02:00

Fix path to latest Inkscape on macOS

This commit is contained in:
Markus Fisch 2020-03-31 20:10:52 +02:00
parent 59d40b944b
commit 85e3f49270

View File

@ -5,7 +5,7 @@ find_converter() {
if [ -z "$INKSCAPE" ]
then
INKSCAPE=$(which inkscape) ||
INKSCAPE='/Applications/Inkscape.app/Contents/Resources/bin/inkscape'
INKSCAPE='/Applications/Inkscape.app/Contents/MacOS/Inkscape'
fi
if [ -x "$INKSCAPE" ]
@ -13,7 +13,7 @@ find_converter() {
converter() {
"$INKSCAPE" \
"$PWD/$1" \
-e "$PWD/$2" \
-o "$PWD/$2" \
-w "$3" \
-h "$4"
}