blob: 03f3b1e5f0449fb883713c51364e997fc850b3bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
## arg 1: the new package version
## arg 2: the old package version
post_install() {
cat <<END
>>> Bash users will need to add the following to ~/.bashrc:
[[ -s /etc/profile.d/autojump.sh ]] && source /etc/profile.d/autojump.sh
Fish users will need to add the following to ~/.config/fish/config.fish:
[ -f /usr/share/autojump/autojump.fish ]; and source /usr/share/autojump/autojump.fish
END
}
|