diff options
author | Leah Rowe <leah@libreboot.org> | 2025-09-02 06:49:38 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-09-02 06:49:38 +0100 |
commit | 568887cd5efd5df519c7f4f593300eb3ae2beaae (patch) | |
tree | fb14a74ce5a00ff51e9ecf30f4cb4a50517d81f8 /include/tree.sh | |
parent | 01a779d4ebcdfc7df406263aeb1dffb800eb0220 (diff) |
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>
Diffstat (limited to 'include/tree.sh')
-rw-r--r-- | include/tree.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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() |