Skip to content

Commit d9e688a

Browse files
authored
Create uninstall.sh
1 parent 2a10914 commit d9e688a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

uninstall.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
set -e
3+
4+
if [[ "$OSTYPE" != darwin* ]]; then
5+
>&2 echo "This script needs to run on macOS"
6+
exit 1
7+
fi
8+
9+
rm -rf "/Applications/fuse X (uri-handler).app" \
10+
"/Applications/fuse X.app" \
11+
"/usr/local/lib/node_modules/@fuse-x" \
12+
"/usr/local/bin/fuse-x" \
13+
"/usr/local/bin/fuse" \
14+
"/usr/local/bin/uno"
15+
16+
echo "fuse X has been uninstalled"

0 commit comments

Comments
 (0)