Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Mac/Extras.install.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@
debug = 0

def isclean(name):
if name == 'CVS': return 0
if name == '.cvsignore': return 0
if name == '.DS_store': return 0
Comment thread
zhangbo2012 marked this conversation as resolved.
if name == '.svn': return 0
if name in ('CVS', '.cvsignore', '.DS_store', '.DS_Store', '.svn'):
return 0
if name.endswith('~'): return 0
if name.endswith('.BAK'): return 0
if name.endswith('.pyc'): return 0
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix Mac/Extras.install.py File Filter Bug.
Comment thread
zhangbo2012 marked this conversation as resolved.
Outdated