debian-packages/script/build_all.sh
leafee98 14dadd779f
Some checks failed
ci/woodpecker/push/build_bin Pipeline was successful
ci/woodpecker/push/build_other Pipeline failed
modify build script and update ci
2023-04-13 13:04:51 +08:00

11 lines
238 B
Bash
Executable file

#!/usr/bin/evn bash
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