We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aa0ca7 commit 674b5ecCopy full SHA for 674b5ec
1 file changed
tools/release.py
@@ -30,6 +30,12 @@ def update_translations():
30
if not file.filename.startswith("heliboard/heliboard/app/src/main/res")\
31
and not file.filename.startswith("heliboard/heliboard/fastlane/metadata"):
32
continue
33
+ # Block extracting Heliboard's base string files, which would overwrite LeanType's English variants
34
+ if file.filename.startswith("heliboard/heliboard/app/src/main/res/values/"):
35
+ continue
36
+ # Block extracting upstream release changelogs since LeanType tracks its own release cycle
37
+ if "/changelogs/" in file.filename:
38
39
file.filename = file.filename.replace("heliboard/heliboard/", "")
40
f.extract(file)
41
os.remove(zip_file_name)
0 commit comments