We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75814db + db36e64 commit d77536eCopy full SHA for d77536e
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