blob: 9ac8c5e328b03cf0562315fdb2b2d4bc51db6a75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
echo "
Add the following line to your config.fish file:
source /usr/share/chruby/chruby.fish
To enable auto-switching, also add the auto.fish file:
source /usr/share/chruby/auto.fish
"
}
post_upgrade() {
post_install
}
post_remove() {
echo "
Please do not forget to delete the following line from your config.fish file:
source /usr/share/chruby/chruby.fish
If auto-switching is enabled, also delete the following line:
source /usr/share/chruby/auto.fish
"
}
|