kombu/contrib/release/removepyc.sh

4 lines
96 B
Bash
Executable File

#!/bin/bash
(cd "${1:-.}";
find . -name "*.pyc" | xargs rm -- 2>/dev/null) || echo "ok"