CI is having an issue with the second call to bashate which is supposed
to warn on lines > 80 characters. I cannot seem to get this to replicate
properly locally and bashate is still not a hard requirement for our CI,
we're disabling the extra call for now.
Issue: RELENG-4467
Change-Id: I2bf092b8026d60848796f3357e46d3e877417896
Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
# forbid lines > 120 char
sh -c "find . -not -path '*/\.*' -name '*.sh' -exec bashate -e E006 -i $RULES_IGNORED --max-line-length 120 \{\} +"
# perform bashate and warn lines > 80 char
- find . -not -path '*/\.*' -name *.sh -exec bashate \{\} +
+ #find . -not -path '*/\.*' -name *.sh -exec bashate \{\} +
#The option --max-line-length 80 is used by default.
#########