Use the correct variable `digReturnCode`

also use INFO instead of CROSS, because it's not an error.

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
pull/5056/head
RD WebDesign 1 year ago
parent 67f04787d6
commit b4349b41ce
No known key found for this signature in database
GPG Key ID: AE3C7FC910687F33

@ -397,8 +397,8 @@ os_check() {
log_write "${INFO} dig return code: ${digReturnCode}"
log_write "${INFO} dig response: ${response}"
if [ "${response}" -ne 0 ]; then
log_write "${CROSS} Distro: ${COL_RED}${detected_os^}${COL_NC}"
if [ "${digReturnCode}" -ne 0 ]; then
log_write "${INFO} Distro: ${COL_RED}${detected_os^}${COL_NC}"
log_write "${CROSS} Error: ${COL_RED}dig command failed - Unable to check OS${COL_NC}"
else
IFS=" " read -r -a supportedOS < <(echo "${response}" | tr -d '"')

Loading…
Cancel
Save