#!/bin/bash
# Remove the google-chrome-beta 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 google-chrome-beta
fi
exit 0
