summaryrefslogtreecommitdiffstats
path: root/format-patch.sh
diff options
context:
space:
mode:
authorAnand V. Avati <avati@dev.gluster.com>2009-10-28 07:15:55 -0700
committerAnand V. Avati <avati@dev.gluster.com>2009-10-28 07:50:08 -0700
commit70cc55ba0a28192c4e0d5d669e119f5dee9a01f0 (patch)
treea33a493a1fcdeb9415b5ec617cd3a0608d0bec8d /format-patch.sh
parent5ba4fcb1dab921b50a9f743edfa2da6256ddec75 (diff)
Add -s (signoff) to format-patch.sh
Diffstat (limited to 'format-patch.sh')
-rwxr-xr-xformat-patch.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/format-patch.sh b/format-patch.sh
index 87af90cb687..e3dfb87ca76 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 BRANCH:release-2.0 BUG:$bug" "$@";
+ git format-patch -s --subject-prefix="PATCH BRANCH:release-2.0 BUG:$bug" "$@";
fi
}