#!/bin/sh -e

FLAVOR="$1"

echo "install/sass-elisp: Handling removal of emacsen flavor ${FLAVOR}"

if [ "${FLAVOR}" != "emacs" ]; then
  echo "install/sass-elisp: purging byte-compiled files for ${FLAVOR}"
  rm -rf /usr/share/${FLAVOR}/site-lisp/sass-elisp
fi

exit 0;
