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