aboutsummarylogtreecommitdiffstats
path: root/keybase.install
blob: 0072c06ab63dafec4938572730eb1a59fe21fa83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
  if [ -e /opt/keybase/post_install.sh ] ; then
    # Until KBFS is in the production packages, this script doesn't exist.
    /opt/keybase/post_install.sh
  fi
}

post_upgrade() {
  if [ -e /opt/keybase/post_install.sh ] ; then
    # Until KBFS is in the production packages, this script doesn't exist.
    /opt/keybase/post_install.sh
  fi
}