From f513157e93bbba885f12f10ca2fb94424d7aea5e Mon Sep 17 00:00:00 2001 From: "Anand V. Avati" Date: Wed, 28 Oct 2009 07:15:55 -0700 Subject: Add -s (signoff) to format-patch.sh --- format-patch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'format-patch.sh') diff --git a/format-patch.sh b/format-patch.sh index 86737042f0b..12d05a03d57 100755 --- a/format-patch.sh +++ b/format-patch.sh @@ -51,9 +51,9 @@ function main() } if [ -z "$bug" ]; then - git format-patch "$@"; + git format-patch -s "$@"; else - git format-patch --subject-prefix="PATCH BUG:$bug" "$@"; + git format-patch -s --subject-prefix="PATCH BUG:$bug" "$@"; fi } -- cgit