blob: 08533b899afe4511d33597b0935b0aa0f113cbe1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# shellcheck shell=bash
# -*- sh -*-
post_install() {
cat <<__EOT__
» NB: dmenu and vim users can find relevant scripts in
» /usr/share/doc/uni/
__EOT__
}
post_upgrade() {
post_install "$@"
}
# eof
|