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