Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
yosupo06 committed Dec 14, 2020
1 parent c057fbb commit db36e64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate_zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
for lang in langs:
for f in (Path('..') / 'document_{}'.format(lang)).glob('*.html'):
zipf.write(f, 'document_{}/'.format(lang) + f.name)
for f in (Path('..') / 'document_{}/lib'.format(lang)).glob('**/*'):
for f in (Path('..') / 'document_{}/lib'.format(lang)).glob('*'):
zipf.write(f, 'document_{}/lib/'.format(lang) + f.name)
for f in (Path('..') / 'document_{}/lib/fonts'.format(lang)).glob('**/*'):
zipf.write(f, 'document_{}/lib/fonts/'.format(lang) + f.name)
Expand Down

0 comments on commit db36e64

Please sign in to comment.