11 lines
138 B
Text
11 lines
138 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
|
||
|
if [ -d /usr/share/gnome/help/control-center ]; then
|
||
|
rm -rf /usr/share/gnome/help/control-center
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|