summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuilddebs4
1 files changed, 2 insertions, 2 deletions
diff --git a/builddebs b/builddebs
index 95e7a07..35dc94c 100755
--- a/builddebs
+++ b/builddebs
@@ -16,13 +16,13 @@ for SOURCE in libpiny pinyadmin; do (cd "$SOURCE"; debuild -tc); done
equivs-build -f piny.equiv
echo
-echo -n "Install packages? (y/N) "
+echo -n "Install packages on this machine? (y/N) "
read -n 1 INSTALL
echo
if [ "$INSTALL" == "y" ]; then sudo debi *.changes; fi
echo
-echo -n "Push packages? (y/N) "
+echo -n "Upload packages to debian? (y/N) "
read -n 1 PUSH
echo
if [ "$PUSH" == "y" ]; then dput *.changes; fi