r0c/scripts/clean.sh

11 lines
185 B
Bash
Raw Permalink Normal View History

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