mirror of
https://codeberg.org/kiss-community/repo
synced 2025-01-10 21:00:09 -07:00
16 lines
294 B
Plaintext
16 lines
294 B
Plaintext
|
#!/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
|