mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-22 23:30:05 -07:00
16 lines
294 B
Bash
Executable File
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
|