From a2607ef02490647b3adfbcef64efcf24866d2210 Mon Sep 17 00:00:00 2001 From: Zachary Huff Date: Wed, 18 Nov 2020 15:08:05 -0500 Subject: [PATCH] Update builder upload --- tools/builder.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/builder.py b/tools/builder.py index 55ba3e2dd..2a3bb7418 100644 --- a/tools/builder.py +++ b/tools/builder.py @@ -194,7 +194,9 @@ def iter_packages(): for target in BUILD_TARGETS: target_path = os.path.join(pacur_path, target) for name in os.listdir(target_path): - if name.endswith(".pkg.tar.xz"): + if cur_version not in name: + continue + elif name.endswith(".pkg.tar.xz"): pass elif name.endswith(".rpm"): pass