1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-16 20:05:07 +00:00
mpv/debian/postrm

10 lines
112 B
Plaintext
Raw Normal View History

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