Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d77536e

Browse filesBrowse files
authored
Merge pull request #86 from atcoder/patch/zip
fix bug
2 parents 75814db + db36e64 commit d77536e
Copy full SHA for d77536e

File tree

1 file changed

+1
-1
lines changed
Filter options

1 file changed

+1
-1
lines changed

‎tools/generate_zip.py

Copy file name to clipboardExpand all lines: 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.