blob: a86478bd65c71a2a5aa4db7eebe5ab63e355a661 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# arg 1: the new package version
post_install() {
texconfig-sys rehash
}
post_upgrade() {
texconfig-sys rehash
}
op=$1
shift
[ "$(type -t "$op")" = "function" ] && $op "$@"
# vim:set ts=2 sw=2 et:
|