summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJulia Kreger <juliaashleykreger@gmail.com>2018-07-21 17:19:17 -0400
committerJulia Kreger <juliaashleykreger@gmail.com>2018-07-21 17:19:17 -0400
commit471aafc0475005a2bde038b9024f96bfd64366cc (patch)
tree8d9127e5487576d260b0a4332bccc8fdf2807c8b /tools
parent3b7e7fb3fcb24726b94d1bf1c44dc710fde0e996 (diff)
downloadironic-471aafc0475005a2bde038b9024f96bfd64366cc.tar.gz
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
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_bashate.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_bashate.sh b/tools/run_bashate.sh
index 54524c33d..1f05b8f63 100755
--- a/tools/run_bashate.sh
+++ b/tools/run_bashate.sh
@@ -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