Compare commits

...

5 Commits

Author SHA1 Message Date
tteckster 9c3fb90eb8
Update create_lxc.sh
revert add error message, silent function not used
2023-05-06 17:19:12 -04:00
tteckster 5e7a808fb9
Update build.func
revert add error message, no silent function used
2023-05-06 17:17:37 -04:00
tteckster 67df410019
Update create_lxc.sh
add error message
2023-05-06 17:10:17 -04:00
tteckster 353e74f86b
Update install.func
add error message
2023-05-06 17:09:28 -04:00
tteckster 2c247bc588
Update build.func
add error message
2023-05-06 17:08:36 -04:00
1 changed files with 4 additions and 1 deletions

View File

@ -36,7 +36,10 @@ error_handler() {
local line_number="$1" local line_number="$1"
local command="$2" 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}" 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() { msg_info() {