We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c057fbb commit db36e64Copy full SHA for db36e64
tools/generate_zip.py
@@ -18,7 +18,7 @@
18
for lang in langs:
19
for f in (Path('..') / 'document_{}'.format(lang)).glob('*.html'):
20
zipf.write(f, 'document_{}/'.format(lang) + f.name)
21
- for f in (Path('..') / 'document_{}/lib'.format(lang)).glob('**/*'):
+ for f in (Path('..') / 'document_{}/lib'.format(lang)).glob('*'):
22
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)
0 commit comments