8 lines
130 B
Bash
Executable File
8 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
rm -drv build
|
|
rm -drv dist
|
|
find . -name "*.egg*" -exec rm -drv {} \;
|
|
find . -name "*__pycache__*" -exec rm -drv {} \;
|