Skip to content

Commit

Permalink
Merge pull request #86 from atcoder/patch/zip
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
yosupo06 authored Dec 14, 2020
2 parents 75814db + db36e64 commit d77536e
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 d77536e

Please sign in to comment.