summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuilddebs5
1 files changed, 4 insertions, 1 deletions
diff --git a/builddebs b/builddebs
index 272fa32..59f2474 100755
--- a/builddebs
+++ b/builddebs
@@ -3,21 +3,24 @@
set -e
set -o pipefail
-for SOURCE in libpiny pinyadmin; do cd "$SOURCE"; debuild -tc; done
+for SOURCE in libpiny pinyadmin; do (cd "$SOURCE"; debuild -tc); done
equivs-build -f piny.equiv
echo
echo -n "Install packages? (y/N) "
read -n 1 INSTALL
+echo
if [ "$INSTALL" == "y" ]; then debi *.changes; fi
echo
echo -n "Push packages? (y/N) "
read -n 1 PUSH
+echo
if [ "$PUSH" == "y" ]; then dput *.changes; fi
echo
echo -n "Clean repo? (Y/n) "
read -n 1 CLEAN
+echo
if [ "$CLEAN" != "n" ]; then git clean; fi