1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00
wting_autojump/autojump.install

19 lines
391 B
Plaintext
Raw Normal View History

2009-02-10 17:03:03 +00:00
# arg 1: the new package version
post_install() {
echo " > You need to source /etc/profile in your ~/.bash_profile our ~/.bashrc for this to work"
echo " > Only guaranteed to work with bash"
2009-02-10 17:52:07 +00:00
echo " > man autojump for instructions."
2009-02-10 17:03:03 +00:00
/bin/true
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install $1
/bin/true
}
op=$1
shift
$op $*