mirror of https://github.com/mpv-player/mpv
10 lines
112 B
Plaintext
10 lines
112 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ "$1" = "purge" ]; then
|
||
|
if [ -d /etc/mplayer/ ]; then
|
||
|
rm -rf /etc/mplayer/
|
||
|
fi
|
||
|
fi
|