mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 16:21:00 -05:00
fix corner case
This commit is contained in:
parent
c03d109494
commit
124b516e6a
1 changed files with 1 additions and 1 deletions
|
@ -1320,7 +1320,7 @@ TestCodebase()
|
|||
#########################################################
|
||||
# If not found, assume it should be linted successfully #
|
||||
#########################################################
|
||||
if [ -z "$FILE_STATUS" ]; then
|
||||
if [ -z "$FILE_STATUS" ] || [[ "$FILE" == *"README"* ]]; then
|
||||
##################################
|
||||
# Set to good for proper linting #
|
||||
##################################
|
||||
|
|
Loading…
Reference in a new issue