Skip to content

Commit d77536e

Browse files
authoredDec 14, 2020
Merge pull request #86 from atcoder/patch/zip
fix bug
2 parents 75814db + db36e64 commit d77536e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎tools/generate_zip.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
for lang in langs:
1919
for f in (Path('..') / 'document_{}'.format(lang)).glob('*.html'):
2020
zipf.write(f, 'document_{}/'.format(lang) + f.name)
21-
for f in (Path('..') / 'document_{}/lib'.format(lang)).glob('**/*'):
21+
for f in (Path('..') / 'document_{}/lib'.format(lang)).glob('*'):
2222
zipf.write(f, 'document_{}/lib/'.format(lang) + f.name)
2323
for f in (Path('..') / 'document_{}/lib/fonts'.format(lang)).glob('**/*'):
2424
zipf.write(f, 'document_{}/lib/fonts/'.format(lang) + f.name)

0 commit comments

Comments
 (0)