mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-16 07:15:24 +01:00
11 lines
203 B
Bash
Executable File
11 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm -v coverage.xml
|
|
rm -v MANIFEST
|
|
rm -v nosetests.xml
|
|
rm -rv build
|
|
|
|
find . -type f -name '*.py[co]' -delete
|
|
find . -path '*/__pycache__/*' -delete
|
|
find . -type d -name "__pycache__" -delete
|