tree.sh: add missing colon at the end of trees()

this is because when using chained commands at the end
of functions, sometimes you have to explicitly terminate
the line.

the way i do it in this patch is common across the
build system, to mitigate this sh quirk.

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2025-09-02 06:49:38 +01:00
parent 01a779d4eb
commit 568887cd5e
+1 -1
View File
@@ -64,7 +64,7 @@ trees()
targets="$*"
cmd="build_targets $targets"
singletree "$project" && cmd="build_project"
singletree "$project" && cmd="build_project"; :
}
build_project()