blob: ad5007033b3de2bf03b7fd0db24674d32190bc1a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
inkscape_dir="$(inkscape --system-data-directory)"
if [ -n "$inkscape_dir" ]; then
if [ -L "${inkscape_dir}/extensions/inkstitch" ]; then
rm -f "${inkscape_dir}/extensions/inkstitch"
fi
fi
|