소스 검색

Update install.func

add error message
tteckster 2 년 전
부모
커밋
353e74f86b
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      misc/install.func

+ 4 - 1
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() {