#!/bin/sh

set -e

#DEBHELPER#

case "$1" in
	upgrade)
		if [ -f /etc/xdg/menus/applications.menu.orig.dpkg-new ]; then
			mv /etc/xdg/menus/applications.menu.orig.dpkg-new /etc/xdg/menus/applications.menu
		fi
	;;
esac
