mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-26 16:11:08 +00:00
13 lines
229 B
Plaintext
13 lines
229 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ -d /Applications/tahoe.app ]; then
|
||
|
rm -r /Applications/tahoe.app
|
||
|
fi
|
||
|
|
||
|
if [ -f /etc/paths.d/tahoe ]; then
|
||
|
rm /etc/paths.d/tahoe
|
||
|
fi
|
||
|
|
||
|
if [ -f /etc/manpaths.d/tahoe.1 ]; then
|
||
|
rm /etc/manpaths.d/tahoe.1
|
||
|
fi
|