Skip to content

Commit

Permalink
Do not use release version in name if openmicroscopy
Browse files Browse the repository at this point in the history
  • Loading branch information
jburel committed Nov 5, 2024
1 parent ec7a659 commit d31da2d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/antlib/scripts/source-archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@
# Create destination zip file
print(" - creating %s/%s.zip" % (target, release))
sys.stdout.flush()
basezip = zipfile.ZipFile("%s/%s.zip" % (target, release), 'w')
if target == "openmicroscopy":
basezip = zipfile.ZipFile("%s/%s.zip" % (target, release), 'w')
else:
basezip = zipfile.ZipFile("%s.zip" % (target), 'w')

# Repack each of the separate zips into the destination zip
for name in zips:
Expand Down

0 comments on commit d31da2d

Please sign in to comment.