We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 006b57d commit 1c6d61aCopy full SHA for 1c6d61a
src/info_parser.py
@@ -135,9 +135,8 @@ def _excluded_languages(self):
135
return ["**/qqq.lproj"]
136
else:
137
# Copy the enforced lang to the custom folder
138
- for lang_file in Path().parent.rglob(f'{enforced}.lproj'):
139
- lang_file.copy
+ for lang_file in Path().cwd().parent.rglob(f'{enforced}.lproj'):
140
shutil.copytree(
141
- lang_file, Path().parent/"custom"/self.brand_name, dirs_exist_ok=True)
+ lang_file, Path().cwd().parent/"custom"/self.brand_name, dirs_exist_ok=True)
142
# exclude all other languages under Support/*.lproj
143
return ["**/*.lproj"]
0 commit comments