#!/bin/bash

set -e

case "$1" in
	remove|abort-install|purge)
		rm -f /usr/bin/apm
		rm -rf "/opt/atom"
	;;
esac

#DEBHELPER#

exit 0
