scripts: Detect shellcheck errors by looking at the length of
shellcheck.log shellcheck does not seem to reliably return error codes, at least on the 0.7.0 version packaged on Fedora. Instead, look at whether shellcheck.log contains any output. Change-Id: Iec3c4f416844eed6a6c75b9204e24c2bc7243f7a Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4072 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Michal Berger <michalx.berger@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
parent
0ee7697e4d
commit
9f6f02f22e
@ -428,9 +428,8 @@ SC2119,SC2120,SC2148,SC2153,SC2154,SC2164,SC2174,SC2001,SC2206,SC2207,SC2223"
|
|||||||
SHCK_APPLY=false
|
SHCK_APPLY=false
|
||||||
SHCH_ARGS=" -x -e $SHCK_EXCLUDE -f $SHCK_FORMAT"
|
SHCH_ARGS=" -x -e $SHCK_EXCLUDE -f $SHCK_FORMAT"
|
||||||
|
|
||||||
error=0
|
git ls-files '*.sh' | xargs -P$(nproc) -n1 shellcheck $SHCH_ARGS &> shellcheck.log
|
||||||
git ls-files '*.sh' | xargs -P$(nproc) -n1 shellcheck $SHCH_ARGS &> shellcheck.log || error=1
|
if [[ -s shellcheck.log ]]; then
|
||||||
if [ $error -ne 0 ]; then
|
|
||||||
echo " Bash formatting errors detected!"
|
echo " Bash formatting errors detected!"
|
||||||
|
|
||||||
cat shellcheck.log
|
cat shellcheck.log
|
||||||
|
Loading…
Reference in New Issue
Block a user