Merge pull request #205 from kivy/clean_fix
Fixed filename extention matching. closes #193
This commit is contained in:
commit
cde3932d3a
1 changed files with 4 additions and 4 deletions
|
@ -835,12 +835,12 @@ class PythonRecipe(Recipe):
|
|||
self.install_python_package()
|
||||
self.reduce_python_package()
|
||||
|
||||
def remove_junk(self, d):
|
||||
exts = ["pyc", "py", "so.lib", "so.o", "sh"]
|
||||
@staticmethod
|
||||
def remove_junk(d):
|
||||
exts = [".pyc", ".py", ".so.lib", ".so.o", ".sh"]
|
||||
for root, dirnames, filenames in walk(d):
|
||||
for fn in filenames:
|
||||
ext = fn.rsplit(".", 1)[-1]
|
||||
if ext in exts:
|
||||
if any([fn.endswith(ext) for ext in exts]):
|
||||
unlink(join(root, fn))
|
||||
|
||||
def install_python_package(self, name=None, env=None, is_dir=True):
|
||||
|
|
Loading…
Reference in a new issue