This website requires JavaScript.
Explore
Help
Register
Sign In
Rooba
/
kombu
mirror of
https://github.com/celery/kombu.git
Watch
1
Star
1
Fork
You've already forked kombu
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
ab43b94eb7
kombu
/
contrib
/
release
/
removepyc.sh
4 lines
96 B
Bash
Raw
Normal View
History
Unescape
Escape
Tox: remove pyc files before testing
2011-09-13 17:24:32 +00:00
#!/bin/bash
Fixes removepyc script
2011-09-13 23:51:34 +00:00
(
cd
"
${
1
:-
.
}
"
;
Improve removepyc script
2011-09-13 18:24:55 +00:00
find . -name
"*.pyc"
|
xargs rm -- 2>/dev/null
)
||
echo
"ok"