Skip to content

Commit

Permalink
Do not add release when zipping openmicroscopy source
Browse files Browse the repository at this point in the history
  • Loading branch information
jburel committed Nov 6, 2024
1 parent a67eddf commit d4f95ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/antlib/scripts/source-archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@
vcs_date = sys.argv[6]
vcs_date_unix = sys.argv[7]
target = os.path.abspath(sys.argv[8])
release = "%s-%s" % (release, version)
if release != "openmicroscopy":
release = "%s-%s" % (release, version)

if not os.path.isdir('.git'):
raise Exception('Releasing is only possible from a git repository')
Expand Down

0 comments on commit d4f95ec

Please sign in to comment.