mirror of
https://github.com/xdtianyu/scripts.git
synced 2025-08-09 12:02:16 +08:00
24 lines
263 B
Bash
24 lines
263 B
Bash
#!/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!"
|