summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Blake Kongslie <jblake@omgwallhack.org>2010-11-05 10:49:25 -0700
committerJulian Blake Kongslie <jblake@omgwallhack.org>2010-11-05 10:49:25 -0700
commita24616b1a1e255f699c8c33123a0335b302e0d23 (patch)
tree82d40763433b3efc399652ed92c1d9436cf9de49
parentcb5b56445c04a5d53ab3d0a93d5a2940ee8e0daf (diff)
downloadpiny-code-a24616b1a1e255f699c8c33123a0335b302e0d23.tar.gz
piny-code-a24616b1a1e255f699c8c33123a0335b302e0d23.zip
Be more paranoid about cleaning the repo.
-rwxr-xr-xbuilddebs4
1 files changed, 2 insertions, 2 deletions
diff --git a/builddebs b/builddebs
index 59f2474..8f34dee 100755
--- a/builddebs
+++ b/builddebs
@@ -20,7 +20,7 @@ echo
if [ "$PUSH" == "y" ]; then dput *.changes; fi
echo
-echo -n "Clean repo? (Y/n) "
+echo -n "Clean repo? (y/N) "
read -n 1 CLEAN
echo
-if [ "$CLEAN" != "n" ]; then git clean; fi
+if [ "$CLEAN" == "y" ]; then git clean; fi