blob: 98779d936c536e3ecff9d38e2a858aa8a329d230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
echo "==> To complete installation, add the following lines to your bashrc"
echo '[[ -f /usr/share/nwd/preexec.sh ]] && . /usr/share/nwd/prexec.sh'
echo '==> and restart bash'
}
post_upgrade() {
echo "==> To complete update, make sure you have the following lines in your bashrc"
echo '[[ -f /usr/share/nwd/preexec.sh ]] && . /usr/share/nwd/prexec.sh'
echo '==> and restart bash'
}
post_remove() {
echo "==> To complete removal, remove the `source` of nwd/preexec.sh from your bashrc"
}
|