Merge pull request #187 from tahoe-lafs/2493.cleanup-osx-packaging.1

2493.cleanup osx packaging.1
This commit is contained in:
Daira Hopwood 2015-09-03 15:23:10 +01:00
commit be5ead141e
3 changed files with 19 additions and 1 deletions

View File

@ -1,3 +1,8 @@
#!/bin/bash
echo "/Applications/tahoe.app/bin" >> /etc/paths.d/tahoe
PWD=`pwd`
echo "/Applications/tahoe.app/bin/" >> /etc/paths.d/tahoe
# copy the manpage into /etc/manpaths.d/
echo "/Applications/tahoe.app/docs/man/" >> /etc/manpaths.d/tahoe

View File

@ -0,0 +1,13 @@
#!/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