summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-04-22 10:08:52 +0200
committerStefan Metzmacher <metze@samba.org>2011-04-22 10:54:20 +0200
commit40792f8bc4d88ba365532f79cbdfb8dbbe507ffc (patch)
tree7875c332f6eae663ed689be606c4e02955d6f13c
parentb48e22347d9b2d0b3b128197b4ef662558b0f2e9 (diff)
downloadsamba-40792f8bc4d88ba365532f79cbdfb8dbbe507ffc.tar.gz
script/librelease: use a GPG_KEYID variable to hold the signing key
metze
-rwxr-xr-xscript/librelease.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/script/librelease.sh b/script/librelease.sh
index 666c3923679..70048e92033 100755
--- a/script/librelease.sh
+++ b/script/librelease.sh
@@ -2,6 +2,7 @@
# make a release of a Samba library
GPG_USER='Samba Library Distribution Key <samba-bugs@samba.org>'
+GPG_KEYID='13084025'
if [ ! -d ".git" ]; then
echo "Run this script from the top-level directory in the"
@@ -39,7 +40,7 @@ release_lib() {
tagname=$(basename $tarname .tar | sed s/[\.]/-/g)
echo "tagging as $tagname"
- git tag -u 13084025 -s "$tagname" -m "$lib: tag release $tagname"
+ git tag -u $GPG_KEYID -s "$tagname" -m "$lib: tag release $tagname"
echo "signing"
rm -f "$tarname.asc"