cd357843cb
git-subtree-dir: fbreader/fbreader git-subtree-split: 7abc80d12fab06b05ea1fe68a0e73ea5e9486463
16 lines
306 B
Bash
16 lines
306 B
Bash
#! /bin/sh
|
|
|
|
if [ -x /usr/bin/gtk-update-icon-cache ]
|
|
then
|
|
/usr/bin/gtk-update-icon-cache -f /usr/share/icons/hicolor
|
|
fi
|
|
|
|
if [ -x /usr/bin/update-desktop-database ]
|
|
then
|
|
/usr/bin/update-desktop-database
|
|
fi
|
|
|
|
if [ -x /usr/bin/update-mime-database ]
|
|
then
|
|
/usr/bin/update-mime-database /usr/share/mime
|
|
fi
|