summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuilddebs14
1 files changed, 10 insertions, 4 deletions
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