mirror of
https://github.com/python/cpython.git
synced 2026-01-04 14:32:21 +00:00
gh-98940: Fix Mac/Extras.install.py File filter bug (GH-98943)
Slightly simplify the script and fix a case issue in the name of ``.DS_Store`` files.
(cherry picked from commit ea88d34de2)
Co-authored-by: zhangbo <zhangbo2012@outlook.com>
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
This commit is contained in:
parent
f4cb8285ba
commit
0a208d5e24
2 changed files with 4 additions and 4 deletions
|
|
@ -9,10 +9,9 @@
|
|||
debug = 0
|
||||
|
||||
def isclean(name):
|
||||
if name == 'CVS': return 0
|
||||
if name == '.cvsignore': return 0
|
||||
if name == '.DS_store': return 0
|
||||
if name == '.svn': return 0
|
||||
if name in ('CVS', '.cvsignore', '.svn'):
|
||||
return 0
|
||||
if name.lower() == '.ds_store': return 0
|
||||
if name.endswith('~'): return 0
|
||||
if name.endswith('.BAK'): return 0
|
||||
if name.endswith('.pyc'): return 0
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
Fix ``Mac/Extras.install.py`` file filter bug.
|
||||
Loading…
Add table
Add a link
Reference in a new issue