1
mirror of https://github.com/mpv-player/mpv synced 2025-01-01 04:36:24 +01: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