debian-packages/script/build_all.sh
leafee98 9a18556c77
All checks were successful
ci/woodpecker/push/build_bin Pipeline was successful
ci/woodpecker/push/build_other Pipeline was successful
fix build_all script, log message before upload start
2023-04-13 14:04:38 +08:00

11 lines
238 B
Bash
Executable file

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