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