diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-04-14 12:58:04 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-04-14 12:58:04 +0700 |
commit | 62aec15f4101f8a65b07d294e84280efeea75c76 (patch) | |
tree | 02fde693a5a7ffba4efed6c695b7a82339452983 /development/neovim-qt | |
parent | 4580f2bad145d07e73ff60df57df04926432f3b7 (diff) |
development/neovim-qt: Fix doinst.sh.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/neovim-qt')
-rw-r--r-- | development/neovim-qt/doinst.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/development/neovim-qt/doinst.sh b/development/neovim-qt/doinst.sh index 9a8ded3c60349..aea0f894eb32b 100644 --- a/development/neovim-qt/doinst.sh +++ b/development/neovim-qt/doinst.sh @@ -5,3 +5,9 @@ fi if [ -x /usr/bin/update-mime-database ]; then /usr/bin/update-mime-database usr/share/mime >/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 |