From: Hugo Villeneuve Date: Mon, 23 Mar 2026 19:36:29 +0000 (-0400) Subject: hvsp: mask stdout when cherry-picking X-Git-Url: http://gitweb.hugovil.com/sitemap.xml?a=commitdiff_plain;h=7b837caeca10cd53fd561dbb146915ae241a13e6;p=hvutilities.git hvsp: mask stdout when cherry-picking Signed-off-by: Hugo Villeneuve --- diff --git a/scripts/kernel-send-patches.sh b/scripts/kernel-send-patches.sh index 79ca4f8..3a385df 100755 --- a/scripts/kernel-send-patches.sh +++ b/scripts/kernel-send-patches.sh @@ -367,7 +367,7 @@ else git branch --set-upstream-to ${base_branch} fi -git cherry-pick ${COMMIT_START_SHA1}..${COMMIT_END_SHA1} +git cherry-pick ${COMMIT_START_SHA1}..${COMMIT_END_SHA1} 1>/dev/null if [ "${use_b4}" = "1" ]; then b4 prep --check-deps @@ -444,7 +444,7 @@ EOF git checkout -b ${temp_compile_branch} ${compile_branch} # Apply all of our commits to temp_compile_branch: - git cherry-pick ${COMMIT_START_SHA1}..${COMMIT_END_SHA1} + git cherry-pick ${COMMIT_START_SHA1}..${COMMIT_END_SHA1} 1>/dev/null # Compile and test each commit: git rebase --exec=${compile_script} ${compile_branch}