diff options
-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 |