From 5063f914e5cb0a4d7d81d638517d8026d4413603 Mon Sep 17 00:00:00 2001 From: Axel Beckert Date: Wed, 28 Sep 2011 23:56:29 +0200 Subject: [PATCH] Configurable signing for the nightly builds --- contrib/debian/nightlybuild.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/debian/nightlybuild.sh b/contrib/debian/nightlybuild.sh index 61b5adb..0998927 100755 --- a/contrib/debian/nightlybuild.sh +++ b/contrib/debian/nightlybuild.sh @@ -161,6 +161,12 @@ else git clone git://repo.or.cz/conkeror.git $MASTERDIR fi + # Set the right options for debuild (signed vs unsigned packages) + DEBUILDOPTIONS='-uc -us' + if [ ! -z "$SIGNKEY" ]; then + DEBUILDOPTIONS="-k$SIGNKEY" + fi + # Update master copy cd $MASTERDIR git pull -- 2.11.4.GIT