backupmgr/clean.sh

10 lines
104 B
Bash
Executable File

#!/bin/sh
set -x
set -e
find . -name '*.pyc' -exec rm {} +
rm -rf build
rm -rf *.egg-info
rm -rf dist