2023-04-13 06:04:38 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-04-13 01:53:57 +00:00
|
|
|
|
2023-04-13 04:41:49 +00:00
|
|
|
source $(dirname $0)/util.sh
|
2023-04-13 01:53:57 +00:00
|
|
|
|
|
|
|
for i in $(find . -maxdepth 1 -mindepth 1 -type d -not -path './script' -not -path './makedeb' -not -name '.*')
|
|
|
|
do
|
|
|
|
echo === building $i
|
|
|
|
build_single $i
|
|
|
|
echo === built $i
|
|
|
|
done
|