Skip to content

Commit 5235892

Browse files
committed
release-packages: Fix glob pattern for twine.upload.
1 parent 297b62e commit 5235892

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/release-packages

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def main():
325325
generate_bdist_wheel_universal(setup_file, package_name)
326326

327327
if options.release:
328-
dist_dirs = glob.glob(os.path.join(REPO_DIR, '*', 'dist'))
328+
dist_dirs = glob.glob(os.path.join(REPO_DIR, '*', 'dist', '*'))
329329
twine_upload(dist_dirs)
330330

331331
if options.update_zulip_main_repo:

0 commit comments

Comments
 (0)