diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-29 19:46:07 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-29 19:46:07 +0100 |
commit | f7ec42d379c7dc03ce9ac8f04726649d91bb25e2 (patch) | |
tree | 2581937f1cae6df50722cd4e4a6c55568caaa219 | |
parent | 8d02adfbb5b4466f218b2c4f25296382ec023dc6 (diff) |
trees: add return to check_coreboot_utils()
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | script/trees | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/trees b/script/trees index ce590bdd..de9cc869 100755 --- a/script/trees +++ b/script/trees @@ -196,7 +196,7 @@ check_coreboot_utils() x_ mkdir -p "$utilelfdir" && \ x_ cp "$utilsrcdir/$util" "elf/$util/$1" [ -z "$mode" ] || x_ rm -Rf "$utilelfdir" - done + done; return 0 } check_config() |