12 lines
118 B
Bash
12 lines
118 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "remove" ]; then
|
|
update-desktop-database &> /dev/null || :
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|