blob: d675c0ce5be10ff3fea120b6946cdabfccb06091 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -e
case "$1" in
configure)
# Recompile bytecode for the installed Python version.
# The venv was built on the build machine; .pyc files may reference
# a different path or Python micro-version.
if command -v py3compile >/dev/null 2>&1; then
py3compile /opt/meshbay-common/venv/lib/ 2>/dev/null || true
fi
;;
esac
#DEBHELPER#
|