mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 08:41:02 -05:00
fixing logic
This commit is contained in:
parent
dc881c2d1a
commit
2f7f03efe3
1 changed files with 4 additions and 8 deletions
|
@ -1096,7 +1096,7 @@ GetValidationInfo()
|
||||||
# Set the value
|
# Set the value
|
||||||
ANSIBLE_DIRECTORY="$TEMP_ANSIBLE_DIRECTORY"
|
ANSIBLE_DIRECTORY="$TEMP_ANSIBLE_DIRECTORY"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
###############################
|
###############################
|
||||||
# Get the disable errors flag #
|
# Get the disable errors flag #
|
||||||
###############################
|
###############################
|
||||||
|
@ -1119,8 +1119,6 @@ GetValidationInfo()
|
||||||
DISABLE_ERRORS="false"
|
DISABLE_ERRORS="false"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
############################
|
############################
|
||||||
# Get the run verbose flag #
|
# Get the run verbose flag #
|
||||||
############################
|
############################
|
||||||
|
@ -1898,15 +1896,13 @@ Footer()
|
||||||
##################################
|
##################################
|
||||||
# Exit with 0 if errors disabled #
|
# Exit with 0 if errors disabled #
|
||||||
##################################
|
##################################
|
||||||
|
if [ "$DISABLE_ERRORS" == "true" ]; then
|
||||||
if ${DISABLE_ERRORS} then
|
echo "WARN! Exiting with exit code:[0] as:[DISABLE_ERRORS] was set to:[$DISABLE_ERRORS]"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
|
||||||
|
|
||||||
###############################
|
###############################
|
||||||
# Exit with 1 if errors found #
|
# Exit with 1 if errors found #
|
||||||
###############################
|
###############################
|
||||||
if [ "$ERRORS_FOUND_YML" -ne 0 ] || \
|
elif [ "$ERRORS_FOUND_YML" -ne 0 ] || \
|
||||||
[ "$ERRORS_FOUND_JSON" -ne 0 ] || \
|
[ "$ERRORS_FOUND_JSON" -ne 0 ] || \
|
||||||
[ "$ERRORS_FOUND_XML" -ne 0 ] || \
|
[ "$ERRORS_FOUND_XML" -ne 0 ] || \
|
||||||
[ "$ERRORS_FOUND_MARKDOWN" -ne 0 ] || \
|
[ "$ERRORS_FOUND_MARKDOWN" -ne 0 ] || \
|
||||||
|
|
Loading…
Reference in a new issue