diff --git a/lib/functions/worker.sh b/lib/functions/worker.sh index 156954ac..24285bc2 100755 --- a/lib/functions/worker.sh +++ b/lib/functions/worker.sh @@ -283,7 +283,7 @@ function LintCodebase() { # Error # ######### error "Found errors in [${LINTER_NAME}] linter!" - error "Error code: ${ERROR_CODE}. Command output:${NC}[${LINT_CMD}]" + error "Error code: ${ERROR_CODE}. Command output:${NC}\n------\n${LINT_CMD}\n------" # Increment the error count (("ERRORS_FOUND_${FILE_TYPE}++")) fi @@ -321,7 +321,7 @@ function LintCodebase() { ######### error "Found errors in [${LINTER_NAME}] linter!" error "This file should have failed test case!" - error "Error code: ${ERROR_CODE}. Command output:${NC}[${LINT_CMD}]." + error "Error code: ${ERROR_CODE}. Command output:${NC}\n------\n${LINT_CMD}\n------" # Increment the error count (("ERRORS_FOUND_${FILE_TYPE}++")) else @@ -339,7 +339,7 @@ function LintCodebase() { AddDetailedMessageIfEnabled "${LINT_CMD}" "${TMPFILE}" fi fi - debug "Error code: ${ERROR_CODE}. Command output:${NC}[${LINT_CMD}]." + debug "Error code: ${ERROR_CODE}. Command output:${NC}\n------\n${LINT_CMD}\n------" done #################################