#!/bin/sh
## ----------------------------------------------------------------------
## debian/postinst : postinstallation script for stockthis
## ----------------------------------------------------------------------

## ----------------------------------------------------------------------
set -e

chmod +x /usr/bin/stockthis

oldversion="$2"
if [ -z "$oldversion" ]; then
  gtk-update-icon-cache -f /usr/share/icons/hicolor
fi

exit 0
