From ae853182dc974fc9c44c1ce652f067631a38f650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Nasiadka?= Date: Mon, 20 Sep 2021 16:47:37 +0200 Subject: [PATCH] CI: Fix bashate ignores Bashate only accepts one --ignore option, so first was ignored. Change-Id: I2b7062c4f482faf91c0df40fb79fad75eb326d83 --- 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 6bda1c654..2b5b514cf 100755 --- a/tools/run-bashate.sh +++ b/tools/run-bashate.sh @@ -6,4 +6,4 @@ ROOT=$(readlink -fn $(dirname $0)/.. ) # NOTE(priteau): ignore E010 because it fails on one-liner bash loops: # https://bugs.launchpad.net/bash8/+bug/1895102 find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* \ - -and -name \*.sh -print0 | xargs -0 bashate -v --ignore E006 --ignore E010 + -and -name \*.sh -print0 | xargs -0 bashate -v --ignore E006,E010