2
0
mirror of https://codeberg.org/kiss-community/repo synced 2025-01-10 21:00:09 -07:00
repo/extra/python/post-install

16 lines
294 B
Plaintext
Raw Normal View History

#!/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