From 2ac6db2b914650ee734d99a58901743ca15a0a8f Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 27 Jun 2024 03:36:06 +0100 Subject: [PATCH] trees: shorten the final confirmation message must stay below 80 characters per line Signed-off-by: Leah Rowe --- script/trees | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/trees b/script/trees index d48047c..b32c9fc 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()