diff options
author | Alexander Verbovetsky <alik@ejik.org> | 2023-05-12 23:56:56 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-05-13 19:27:13 +0700 |
commit | 8290e58cf6e3c8bf664c6afc9351cd2e5f8138ed (patch) | |
tree | b1bbedd6d7abde403861d77bd4ffa71595882338 /development/neovim/doinst.sh | |
parent | 555dbc00b3930d76ab2d69fc237197710b89b5fb (diff) |
development/neovim: Updated for version 0.9.0.
Signed-off-by: bedlam <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/neovim/doinst.sh')
-rw-r--r-- | development/neovim/doinst.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/development/neovim/doinst.sh b/development/neovim/doinst.sh index 5fb28930db..fd1bca3b49 100644 --- a/development/neovim/doinst.sh +++ b/development/neovim/doinst.sh @@ -1,3 +1,8 @@ if [ -x /usr/bin/update-desktop-database ]; then /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 |