From 6b7ad0e73d4436fec94ba763d16f34d22a4a4ebb Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Tue, 28 Nov 2023 15:19:27 -0500 Subject: [PATCH] hvsp: avoid git branch delete message --- 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 6231ac8..bbceb0f 100755 --- a/scripts/kernel-send-patches.sh +++ b/scripts/kernel-send-patches.sh @@ -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 -- 2.20.1