This commit is contained in:
xdtianyu
2015-01-27 13:57:10 +08:00
parent 53c24c488b
commit 1afd98180e
3 changed files with 77 additions and 0 deletions

23
py/clean.sh Normal file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
if [ $(find -name \*.pyc|wc -l) != 0 ];then
rm *.pyc
fi
if [ -f ".auto" ];then
rm .auto
fi
if [ -d "dist" ];then
rm -r dist
fi
if [ -d "build" ];then
rm -r build
fi
if [ -f "server.spec" ];then
rm server.spec
fi
echo "DONE!"