From ee324a764e0ee21bca15c20266111b7e8901ed88 Mon Sep 17 00:00:00 2001 From: Semyon Bezrukov Date: Wed, 24 Dec 2025 11:15:13 +0300 Subject: [PATCH] Fix desktopeditors-help packages upload --- scripts/package_desktop.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/package_desktop.py b/scripts/package_desktop.py index 329a43e..e83f47a 100644 --- a/scripts/package_desktop.py +++ b/scripts/package_desktop.py @@ -348,9 +348,12 @@ def make_linux(): if common.deploy: for t in branding.desktop_make_targets: utils.log_h2("desktop " + edition + " " + t["make"] + " deploy") - ret = s3_upload( - [i for i in utils.glob_path(t["src"]) if "enterprise-help" not in i], - t["dst"]) + uploads = [] + for f in utils.glob_path(t["src"]): + if "help" in f and not \ + ("x86_64" in common.platform and edition == "opensource"): continue + uploads.append(f) + ret = s3_upload(uploads, t["dst"]) utils.set_summary("desktop " + edition + " " + t["make"] + " deploy", ret) utils.set_cwd(common.workspace_dir)