blob: c1c351307e9e783e8432fd8a51d65f4c04c4b6d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install(){
echo "Program diffimg (and man page) has been renamed as DiffImg because it conflicts with graphviz"
#which xdg-icon-resource >/dev/null 2>&1 && xdg-icon-resource forceupdate || true
echo "update desktop mime database..."
update-desktop-database -q
}
post_upgrade(){
post_install
}
post_remove(){
#which xdg-icon-resource >/dev/null 2>&1 && xdg-icon-resource forceupdate || true
echo "update desktop mime database..."
update-desktop-database -q
}
|