File: sass-elisp.emacsen-remove

package info (click to toggle)
sass-elisp 3.0.15-4.1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 96 kB
  • ctags: 34
  • sloc: lisp: 290; sh: 40; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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;