release-packages: Fix glob pattern for twine.upload.

This commit is contained in:
Eeshan Garg 2017-10-09 14:07:19 -02:30
parent 297b62efc6
commit 5235892aef

View file

@ -325,7 +325,7 @@ def main():
generate_bdist_wheel_universal(setup_file, package_name) generate_bdist_wheel_universal(setup_file, package_name)
if options.release: if options.release:
dist_dirs = glob.glob(os.path.join(REPO_DIR, '*', 'dist')) dist_dirs = glob.glob(os.path.join(REPO_DIR, '*', 'dist', '*'))
twine_upload(dist_dirs) twine_upload(dist_dirs)
if options.update_zulip_main_repo: if options.update_zulip_main_repo: