8 lines
157 B
Bash
8 lines
157 B
Bash
#!/bin/sh -e
|
|
|
|
if [ "$1" = remove ] && [ -x /usr/sbin/update-binfmts ]; then
|
|
update-binfmts --package mono-runtime --remove cli /usr/bin/cli
|
|
fi
|
|
|
|
#DEBHELPER#
|