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.
2 parents 6c72ff3 + c057fbb commit 75814dbCopy full SHA for 75814db
tools/generate_zip.py
@@ -20,6 +20,8 @@
20
zipf.write(f, 'document_{}/'.format(lang) + f.name)
21
for f in (Path('..') / 'document_{}/lib'.format(lang)).glob('**/*'):
22
zipf.write(f, 'document_{}/lib/'.format(lang) + f.name)
23
+ for f in (Path('..') / 'document_{}/lib/fonts'.format(lang)).glob('**/*'):
24
+ zipf.write(f, 'document_{}/lib/fonts/'.format(lang) + f.name)
25
26
27
for f in (Path('..') / 'atcoder').glob('*'):
0 commit comments