11 lines
232 B
Bash
11 lines
232 B
Bash
#!/bin/sh -e
|
|
|
|
set -e
|
|
|
|
if dpkg-maintscript-helper supports mv_conffile 2>/dev/null; then
|
|
dpkg-maintscript-helper mv_conffile /etc/xdg/pcmanfm/lubuntu.conf /etc/xdg/pcmanfm/lubuntu/pcmanfm.conf 0.15 -- "$@"
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
exit 0
|