summarylogtreecommitdiffstats
path: root/hipchat.install
blob: a32250b78dd7bf75369b59e6b4e92acfb4f8fd38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
update_icon_cache() {
  command -v gtk-update-icon-cache >/dev/null 2>&1 &&
    gtk-update-icon-cache -qtf /usr/share/icons/hicolor
  /bin/true
}

post_install() {
  update_icon_cache
}

post_upgrade() {
  update_icon_cache
}

post_remove() {
  update_icon_cache
}