diff options
Diffstat (limited to 'games/springlobby/doinst.sh')
-rw-r--r-- | games/springlobby/doinst.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/springlobby/doinst.sh b/games/springlobby/doinst.sh index 24e4bc11e0..1f8ff67ded 100644 --- a/games/springlobby/doinst.sh +++ b/games/springlobby/doinst.sh @@ -1,4 +1,10 @@ if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications &> /dev/null + /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 usr/share/icons/hicolor >/dev/null 2>&1 + fi fi |