r0c/scripts/clean.sh

11 lines
191 B
Bash
Raw Normal View History

2018-02-12 00:47:18 +00:00
#!/bin/bash
set -e
[[ -e r0c/__main__.py ]] || cd ..
2018-02-12 00:47:18 +00:00
[[ -e r0c/__main__.py ]] || cd ~/dev/r0c
[[ -e r0c/__main__.py ]] || exit 1
find -iname \*.pyc -delete
find -iname __pycache__ -delete