blob: a25e31885d4a8cdc02d17ce42db0a781cdce0e18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
cat << '__EOF__'
warning: the keybase-redirector is not included, so you will need to define
your `keybase config` mountdir to something you like (or install the
redirector on your own).
See: https://github.com/keybase/client/issues/19840#issuecomment-533842074
__EOF__
}
post_upgrade() {
if (( $(vercmp 4.7.1-1 $2) > 0 )); then
post_install
fi
}
|