11 lines
128 B
Text
11 lines
128 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
# Remove documentation with scrollkeeper
|
||
|
if [ "$1" = remove ]; then
|
||
|
scrollkeeper-update
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|