11 lines
223 B
Bash
Executable File
11 lines
223 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
|
|
if command -v gtk-update-icon-cache >/dev/null 2>&1; then
|
|
gtk-update-icon-cache -f -t /usr/share/icons/hicolor || true
|
|
fi
|
|
fi
|
|
|
|
#DEBHELPER#
|