Skip to content

Commit

Permalink
Update builder upload
Browse files Browse the repository at this point in the history
  • Loading branch information
zachhuff386 committed Nov 18, 2020
1 parent 3de06be commit a2607ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a2607ef

Please sign in to comment.