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