euscan-ng/clean.sh
Maciej Barć 962f26ae05
update setup files
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
2021-02-26 19:04:36 +01:00

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