Ignore bashate E044

Bashate introduces a new error, E044, which attempts to
identify any questionable conditionals that would be
incorrectly using bracketing. That being said, it is
modeled on keeping the design simple, and errors on more
condensed lines where conditionals are included.

Since we don't need this, and the case where it is erroring
is invalid as the test is overly simple, lets ignore it.

Change-Id: Ie46dcd6cd6100f3c7e35c2c817828e45bd6b7921
This commit is contained in:
Julia Kreger 2018-07-21 17:19:17 -04:00
parent 3b7e7fb3fc
commit 471aafc047
1 changed files with 1 additions and 1 deletions

View File

@ -18,4 +18,4 @@ find "$@" -not \( -type d -name .?\* -prune \) \
-wholename \*/devstack/lib/ironic -or \
-name \*.sh \
\) \
-print0 | xargs -0 bashate -v -iE006 -eE005,E042
-print0 | xargs -0 bashate -v -iE006,E044 -eE005,E042