blob: 3a9e6fcbba75e4af8c7a23a88640cfda84d16aea (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
echo "This package installs it's binaries to /opt/clean/bin/. If you wish to use"
echo "them directly please add that directory to your \$PATH variable"
}
post_remove() {
echo "Remember to remove /opt/clean/bin/ from your path if you decided to add it"
}
# vim: set ts=4 sw=4 noet:
|