]> Untitled Git - hvutilities.git/commitdiff
hvsp: mask stdout when cherry-picking
authorHugo Villeneuve <hugo@hugovil.com>
Mon, 23 Mar 2026 19:36:29 +0000 (15:36 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Tue, 24 Mar 2026 16:27:37 +0000 (12:27 -0400)
Signed-off-by: Hugo Villeneuve <hugo@hugovil.com>
scripts/kernel-send-patches.sh

index 79ca4f8064e250ef330b557bc905c26949e3f69c..3a385df15e59ffeb63e89c2c0a3befb230461b8f 100755 (executable)
@@ -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}