kombu/contrib/release/removepyc.sh

4 lines
96 B
Bash
Raw Normal View History

2011-09-13 17:24:32 +00:00
#!/bin/bash
2011-09-13 23:51:34 +00:00
(cd "${1:-.}";
2011-09-13 18:24:55 +00:00
find . -name "*.pyc" | xargs rm -- 2>/dev/null) || echo "ok"