diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-11-05 10:49:25 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-11-05 10:49:25 -0700 |
commit | a24616b1a1e255f699c8c33123a0335b302e0d23 (patch) | |
tree | 82d40763433b3efc399652ed92c1d9436cf9de49 | |
parent | cb5b56445c04a5d53ab3d0a93d5a2940ee8e0daf (diff) | |
download | piny-code-a24616b1a1e255f699c8c33123a0335b302e0d23.tar.gz piny-code-a24616b1a1e255f699c8c33123a0335b302e0d23.zip |
Be more paranoid about cleaning the repo.
-rwxr-xr-x | builddebs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |