hvsp: avoid git branch delete message
authorHugo Villeneuve <hugo@hugovil.com>
Tue, 28 Nov 2023 20:19:27 +0000 (15:19 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Tue, 28 Nov 2023 20:19:27 +0000 (15:19 -0500)
scripts/kernel-send-patches.sh

index 6231ac8..bbceb0f 100755 (executable)
@@ -285,7 +285,7 @@ if [ x"${orig_branch}" = x"" ]; then
 fi
 
 if git branch | grep -q ${patches_branch}; then
-    git branch -D ${patches_branch}
+    git branch -D ${patches_branch} 1>/dev/null
 fi
 
 if [ "${debug}" = "1" ]; then