diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-27 03:36:06 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-27 03:36:32 +0100 |
commit | ffdecb0ce191e1251d2ee78cf0b8ae9124346a6a (patch) | |
tree | ff377ccc3f0dcc8a145f6035eb0f7f3321bd1018 /script/trees | |
parent | ed6acfee84b674405d8227e3908f04d533febaf5 (diff) |
trees: shorten the final confirmation message
must stay below 80 characters per line
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/trees')
-rwxr-xr-x | script/trees | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/trees b/script/trees index 449cda20..a3e33f13 100755 --- a/script/trees +++ b/script/trees @@ -53,7 +53,7 @@ main() [ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0 [ -f "$listfile" ] || return 0 - [ -z "$mode" ] && printf "\n\nDone! Check %s/\n\n" "$elfdir"; return 0 + [ -z "$mode" ] && printf "\n\nOK! Check %s/\n\n" "$elfdir"; return 0 } build_projects() |