Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tree: fix latest shellcheck complaints
Fix the following: In kpatch/kpatch line 358: break ^-- SC2317 (info): Command appears to be unreachable. Check usage (or ignore if invoked indirectly). In kpatch-build/kpatch-build line 1424: "$TOOLSDIR"/create-diff-object $CDO_FLAGS "orig/$i" "patched/$i" "$KOBJFILE_NAME" \ ^--------^ SC2086 (info): Double quote to prevent globbing and word splitting. In kpatch-build/kpatch-build line 1494: MAKEVARS[$idx]=${MAKEVARS[$idx]/${KPATCH_CC_PREFIX}/} ^--^ SC2004 (style): $/${} is unnecessary on arithmetic variables. In kpatch-build/kpatch-build line 1510: "$TOOLSDIR"/create-klp-module $extra_flags "$TEMPDIR/patch/tmp.ko" "$TEMPDIR/patch/$MODNAME.ko" 2>&1 | logger 1 ^----------^ SC2086 (info): Double quote to prevent globbing and word splitting. In test/integration/lib.sh line 119: tdnf install -y linux-$flavor-debuginfo ^-----^ SC2086 (info): Double quote to prevent globbing and word splitting. Signed-off-by: Joe Lawrence <[email protected]> squash
- Loading branch information