mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-29 14:27:42 +00:00
12 lines
162 B
Bash
12 lines
162 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
[ "$1" = "remove" ] || [ "$1" = "deconfigure" ] && \
|
|
update-alternatives --remove mkvinfo /usr/bin/mkvinfo-text
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|
|
|