debian-packages/script/build_all.sh

11 lines
238 B
Bash
Raw Normal View History

#!/usr/bin/evn bash
2023-04-13 04:41:49 +00:00
source $(dirname $0)/util.sh
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