8 lines
128 B
Plaintext
8 lines
128 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
if [ "$1" = remove ]; then
|
||
|
update-alternatives --remove cil-disassembler /usr/bin/monodis
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|