Skip en-US folder when copying en-US Mozilla files to other locales
This commit is contained in:
parent
3693674fc9
commit
a542db8e50
1 changed files with 2 additions and 0 deletions
|
@ -216,6 +216,8 @@ def main():
|
|||
missing = locales.difference(existing_locales)
|
||||
|
||||
for locale in missing:
|
||||
if locale == 'en-US':
|
||||
continue
|
||||
dest_dir = os.path.join(locales_dir, locale, 'zotero', 'mozilla')
|
||||
dest_file = os.path.join(dest_dir, entry_filename)
|
||||
if not os.path.exists(dest_dir):
|
||||
|
|
Loading…
Reference in a new issue