From: Hugo Villeneuve Date: Tue, 20 May 2025 19:33:32 +0000 (-0400) Subject: hvsp: fix error with unapplied global CHECKPATCH_OPS X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=d8a3279307e399a211fc1bbe07e27f123beab143;p=hvutilities.git hvsp: fix error with unapplied global CHECKPATCH_OPS Signed-off-by: Hugo Villeneuve --- diff --git a/scripts/kernel-send-patches.sh b/scripts/kernel-send-patches.sh index 4e7688f..6fa21e0 100755 --- a/scripts/kernel-send-patches.sh +++ b/scripts/kernel-send-patches.sh @@ -335,7 +335,7 @@ for p in ${srcdir}/*.patch; do if [ x"$(basename ${p})" != x"${series_prefix}0000-cover-letter.patch" ]; then if [ x"${ignore_checkpatch_errors}" != x"" ]; then set +e - CHECKPATCH_OPS="--ignore ${ignore_checkpatch_errors}" + CHECKPATCH_OPS="${CHECKPATCH_OPS} --ignore ${ignore_checkpatch_errors}" fi scripts/checkpatch.pl ${CHECKPATCH_OPS} ${p}