You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
305 B
15 lines
305 B
![]()
8 years ago
|
#!/bin/sh -e
|
||
|
|
||
|
# Remove symlink for el, replaced by a folder in 4.8.2-1
|
||
|
case "$1" in
|
||
|
install|upgrade)
|
||
|
if dpkg --compare-versions "$2" lt "4.8.2-1"; then
|
||
|
[ -h /usr/share/doc/xfce4-session/html/el/images ] && rm /usr/share/doc/xfce4-session/html/el/images || true
|
||
|
fi
|
||
|
esac
|
||
|
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|