mpv/debian-build/postrm

10 lines
112 B
Bash

#!/bin/sh
set -e
if [ "$1" = "purge" ]; then
if [ -d /etc/mplayer/ ]; then
rm -rf /etc/mplayer/
fi
fi