[PATCH] dmapi: digitally sign release tags
Alex Elder
aelder at sgi.com
Fri Feb 12 14:58:29 CST 2010
Arrange for the commit marking a new release to include a
"Signed-off-by" line, and have the corresponding tag include
a digital signature.
Signed-off-by: Alex Elder <aelder at sgi.com>
---
release.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: b/release.sh
===================================================================
--- a/release.sh
+++ b/release.sh
@@ -13,10 +13,10 @@ sed -e "s/${version}.*/${version} (${dat
mv doc/CHANGES.tmp doc/CHANGES
echo "Commiting CHANGES update to git"
-git-commit -a -m "${version} release"
+git-commit -s -a -m "${version} release"
echo "Tagging git repository"
-git-tag v${version}
+git tag -s -a -m "${version} release" v${version}
echo "Creating source tarball in build/tar/"
./Makepkgs
More information about the xfs
mailing list