From d8a3279307e399a211fc1bbe07e27f123beab143 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Tue, 20 May 2025 15:33:32 -0400 Subject: [PATCH] hvsp: fix error with unapplied global CHECKPATCH_OPS Signed-off-by: Hugo Villeneuve --- scripts/kernel-send-patches.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} -- 2.20.1