From 568887cd5efd5df519c7f4f593300eb3ae2beaae Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 2 Sep 2025 06:49:38 +0100 Subject: 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 --- include/tree.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/tree.sh') diff --git a/include/tree.sh b/include/tree.sh index 25d6c5c0..20f346ae 100644 --- a/include/tree.sh +++ b/include/tree.sh @@ -64,7 +64,7 @@ trees() targets="$*" cmd="build_targets $targets" - singletree "$project" && cmd="build_project" + singletree "$project" && cmd="build_project"; : } build_project() -- cgit v1.2.1