You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/debian/python3-notcurses.postinst

12 lines
324 B
Bash

#!/bin/sh
set -e
# --------------------- copied from dh-python 4.20191017 ---------
if which py3compile >/dev/null 2>&1; then
py3compile -p python3-notcurses
fi
if which pypy3compile >/dev/null 2>&1; then
pypy3compile -p python3-notcurses || true
fi
# --------------------- end material copied from dh-python -------