diff options
Diffstat (limited to 'community/scite/scite.install')
-rw-r--r-- | community/scite/scite.install | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/community/scite/scite.install b/community/scite/scite.install index 49135f547..686b22022 100644 --- a/community/scite/scite.install +++ b/community/scite/scite.install @@ -1,11 +1,13 @@ post_install() { - echo "Updating desktop and mime database..." update-desktop-database -q } +post_upgrade() { + post_install $1 +} + post_remove() { - echo "Updating desktop and mime database..." - update-desktop-database -q + post_install $1 } # vim:set ts=2 sw=2 et: |