962f26ae05
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
10 lines
138 B
Bash
Executable File
10 lines
138 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
rm -drv build
|
|
rm -drv dist
|
|
find . -name "*.egg*" -exec rm -drv {} \;
|
|
find . -name "*__pycache__*" -exec rm -drv {} \;
|
|
|
|
exit 0
|