Skip to content

Commit 75814db

Browse files
authored
Merge pull request #85 from atcoder/patch/zip
fix bug of generate_zip
2 parents 6c72ff3 + c057fbb commit 75814db

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: tools/generate_zip.py

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
zipf.write(f, 'document_{}/'.format(lang) + f.name)
2121
for f in (Path('..') / 'document_{}/lib'.format(lang)).glob('**/*'):
2222
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)
2325

2426

2527
for f in (Path('..') / 'atcoder').glob('*'):

0 commit comments

Comments
 (0)