mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-30 02:02:52 +00:00
12 lines
222 B
Bash
Executable File
12 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
FLAVOR=$1
|
|
PACKAGE=rust-mode
|
|
ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
|
|
|
|
if [ ${FLAVOR} != emacs ]; then
|
|
echo remove/${PACKAGE}: Purging byte-compiled files for ${FLAVOR}
|
|
rm -rf "${ELCDIR}"
|
|
fi
|