build cn in release script
This commit is contained in:
parent
e82f70a9c2
commit
d59ae6f97d
2 changed files with 11 additions and 9 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -8,4 +8,4 @@ __pycache__
|
|||
.DS_store
|
||||
release
|
||||
source/cn
|
||||
fontsource
|
||||
cdn
|
18
release.py
18
release.py
|
@ -144,17 +144,19 @@ def main():
|
|||
return
|
||||
update_build_script_version(tag)
|
||||
|
||||
target_dir = "fontsource"
|
||||
if os.path.exists(target_dir):
|
||||
shutil.rmtree(target_dir)
|
||||
run("python build.py --ttf-only")
|
||||
run(f"ftcli converter ft2wf -f woff2 ./fonts/TTF -out {target_dir}")
|
||||
run(f"ftcli converter ft2wf -f woff ./fonts/TTF -out {target_dir}")
|
||||
rename_files(target_dir, format_fontsource_name)
|
||||
shutil.rmtree("./cdn", ignore_errors=True)
|
||||
target_fontsource_dir = "cdn/fontsource"
|
||||
run("python build.py --ttf-only --no-nerd-font --cn --no-hinted")
|
||||
run(f"ftcli converter ft2wf -f woff2 ./fonts/TTF -out {target_fontsource_dir}")
|
||||
run(f"ftcli converter ft2wf -f woff ./fonts/TTF -out {target_fontsource_dir}")
|
||||
rename_files(target_fontsource_dir, format_fontsource_name)
|
||||
print("Generate fontsource files")
|
||||
|
||||
shutil.copytree("./fonts/CN", "./cdn/cn")
|
||||
print("Generate CN files")
|
||||
|
||||
woff2_dir = 'woff2/var'
|
||||
if os.path.exists(target_dir):
|
||||
if os.path.exists(target_fontsource_dir):
|
||||
shutil.rmtree(woff2_dir)
|
||||
run(f"ftcli converter ft2wf -f woff2 ./fonts/Variable -out {woff2_dir}")
|
||||
rename_files(woff2_dir, format_woff2_name)
|
||||
|
|
Loading…
Reference in a new issue