From 81717dee4839917792b95824d06023b1468f94b5 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Mon, 27 Jul 2026 10:47:13 +0200 Subject: [PATCH] shorten comment --- misc/error_handler.func | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/misc/error_handler.func b/misc/error_handler.func index 8e2826e64..0b1b9e018 100644 --- a/misc/error_handler.func +++ b/misc/error_handler.func @@ -376,8 +376,7 @@ error_handler() { active_log="$BUILD_LOG" fi - # stderr, not stdout: the trap can fire inside a $(...) or < <(...) capture, - # and a caller reading that stream must never ingest this dump as data. + # stderr: the trap can fire inside a $(...) capture that would eat this as data if [[ -n "$active_log" && -s "$active_log" ]]; then echo -e "\n${TAB}--- Last 20 lines of log ---" >&2 tail -n 20 "$active_log" >&2