diff options
Diffstat (limited to 'community/recoll/recoll.install')
-rw-r--r-- | community/recoll/recoll.install | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/community/recoll/recoll.install b/community/recoll/recoll.install index 0fbb3047a..a89ee4bf0 100644 --- a/community/recoll/recoll.install +++ b/community/recoll/recoll.install @@ -1,11 +1,13 @@ -post_install() { +post_upgrade() { gtk-update-icon-cache -q -t -f usr/share/icons/hicolor } -post_upgrade() { - post_install +post_install() { + post_upgrade } post_remove() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + post_upgrade } + +# vim:set ts=2 sw=2 et: |