12 lines
161 B
Bash
12 lines
161 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "configure" ] ; then
|
|
update-alternatives --install /usr/bin/mistral mistral /usr/bin/python2-mistral 300
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|