build: simplified downloads in fetch_trees()
Signed-off-by: Leah Rowe <leah@libreboot.org>20240612_branch
parent
914ff1ad12
commit
8e05399d91
5
build
5
build
|
@ -180,9 +180,8 @@ build_release()
|
|||
|
||||
fetch_trees()
|
||||
{
|
||||
for x in config/git/*; do
|
||||
[ ! -f "${x}" ] || ./update trees -f "${x#config/git/}" || \
|
||||
$err "${_xm}: fetch ${x#config/git/}"
|
||||
for x in $(items config/git); do
|
||||
./update trees -f "$x" || $err "$_xm: fetch $x"
|
||||
done
|
||||
|
||||
for x in config/*/build.list; do
|
||||
|
|
Loading…
Reference in New Issue