#!/bin/bash
# prerm script for AIR removing the adobeair package
#
# see: dh_installdeb(1)

set -e

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#
if [ "$1" != "upgrade" ]; then
        apt-queue apt-get -qy remove adobeair
fi
exit 0
