From 10f282b3a4930a84cdca247e4bb771f428bd778e Mon Sep 17 00:00:00 2001 From: "jrayhawk+piny.be@omgwallhack.org" Date: Mon, 20 Dec 2010 21:42:14 -0800 Subject: Make builddebs usable by people other than Jules --- builddebs | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'builddebs') diff --git a/builddebs b/builddebs index 287457d..d06c554 100755 --- a/builddebs +++ b/builddebs @@ -5,13 +5,19 @@ set -o pipefail if ls *.changes > /dev/null 2> /dev/null; then echo ".changes files already exist!" - echo "Clean repo before building? (y/N) " + echo -n "Clean repo before building? (y/N) " read -n 1 PRECLEAN echo - if [ "$PRECLEAN" == "y" ]; then git clean; else exit 1; fi + if [ "$PRECLEAN" == "y" ]; then git clean -f; else exit 1; fi fi -for SOURCE in libpiny piny pinyadmin pinyconfigs; do (cd "$SOURCE"; debuild -tc "$@"); done +echo +echo -n "Sign built packages? (y/N) " +read -n 1 SIGN +echo +if [ "$SIGN" == "y" ]; then SIGNARGS=""; else SIGNARGS="-uc -us"; fi + +for SOURCE in libpiny piny pinyadmin pinyconfigs; do (cd "$SOURCE"; debuild $SIGNARGS -tc "$@"); done echo echo -n "Install packages on this machine? (y/N) " @@ -29,4 +35,4 @@ echo echo -n "Clean repo? (y/N) " read -n 1 CLEAN echo -if [ "$CLEAN" == "y" ]; then git clean; fi +if [ "$CLEAN" == "y" ]; then git clean -f; fi -- cgit v1.2.3