Skip to content
Snippets Groups Projects
python-dynamic-graph.postinst 182 B
Newer Older
#!/bin/sh
# postinst script for python-dynamic-graph
#
# see: dh_installdeb(1)

set -e

if which pycompile >/dev/null 2>&1; then
    pycompile -p python-dynamic-graph
fi

#DEBHELPER#