diff options
Diffstat (limited to 'network/choqok/doinst.sh')
-rw-r--r-- | network/choqok/doinst.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/network/choqok/doinst.sh b/network/choqok/doinst.sh index 5bf84b4cdb..1f8ff67ded 100644 --- a/network/choqok/doinst.sh +++ b/network/choqok/doinst.sh @@ -2,8 +2,9 @@ if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 fi -if [ -r usr/share/icons/hicolor/icon-theme.cache ]; then +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 -q usr/share/icons/hicolor >/dev/null 2>&1 + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 fi fi + |