repo/extra/python/post-install
2019-07-17 10:15:07 +03:00

16 lines
294 B
Bash
Executable File

#!/bin/sh -e
[ -f /tmp/python-REBUILD ] || exit 0
rm -f /tmp/python-REBUILD
# Rebuild all python subpackages if the above file existed.
kiss l | while read -r pkg _; do
case $pkg in
python-*)
kiss build "$pkg"
kiss install "$pkg"
;;
esac
done