blob: abf03c95e96d0818b043c10fcaa78c3805805870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
post_install() {
echo "
You need to source the pat.hs script before you can use it. Do one of the following
or similar depending on your shell (and then restart your shell):
echo 'source /usr/share/paths/paths.sh' >> ~/.bashrc
echo 'source /usr/share/paths/paths.fish' >> ~/.config/fish/config.fish
"
}
post_remove() {
echo "
Don't forget to clean up any lines added to your shell's startup script!
For example, from your .bashrc (or config.fish etc.), delete the corresponding line:
source /usr/share/paths/paths.sh
source /usr/share/paths/paths.fish
"
}
|