#!/bin/sh
# postinst script for gimp-astra
#
# see: dh_installdeb(1)

#set -e

#Restore systemwide gimp configuration from backup.
if [ -f "/etc/gimp/2.0/sessionrc.bak" ]; then
   mv /etc/gimp/2.0/sessionrc.bak /etc/gimp/2.0/sessionrc
fi

#DEBHELPER#

exit 0
