diff options
Diffstat (limited to 'network/bitcoin/doinst.sh')
-rw-r--r-- | network/bitcoin/doinst.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/network/bitcoin/doinst.sh b/network/bitcoin/doinst.sh index 140e332222..fd1bca3b49 100644 --- a/network/bitcoin/doinst.sh +++ b/network/bitcoin/doinst.sh @@ -1,3 +1,8 @@ if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 + fi fi |