From 353e74f86b55db96407efe02f1e6a9b42890dbe7 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 6 May 2023 17:09:28 -0400 Subject: [PATCH] Update install.func add error message --- misc/install.func | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/misc/install.func b/misc/install.func index a2fa99e0..d4bf0af0 100644 --- a/misc/install.func +++ b/misc/install.func @@ -36,7 +36,10 @@ error_handler() { local line_number="$1" local command="$2" local error_message="${RD}[ERROR]${CL} in line ${RD}$line_number${CL}: exit code ${RD}$exit_code${CL}: while executing command ${YW}$command${CL}" - echo -e "\n$error_message\n" + echo -e "\n$error_message" + if [[ "$line_number" -eq 22 ]]; then + echo -e "The silent function has suppressed the error, run the script with verbose mode enabled, which will provide more detailed output.\n" + fi } msg_info() {