From 471aafc0475005a2bde038b9024f96bfd64366cc Mon Sep 17 00:00:00 2001 From: Julia Kreger Date: Sat, 21 Jul 2018 17:19:17 -0400 Subject: [PATCH] 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 --- tools/run_bashate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run_bashate.sh b/tools/run_bashate.sh index 54524c33d8..1f05b8f632 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