Skip to content

Commit d4f95ec

Browse files
committed
Do not add release when zipping openmicroscopy source
1 parent a67eddf commit d4f95ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/antlib/scripts/source-archive.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161
vcs_date = sys.argv[6]
6262
vcs_date_unix = sys.argv[7]
6363
target = os.path.abspath(sys.argv[8])
64-
release = "%s-%s" % (release, version)
64+
if release != "openmicroscopy":
65+
release = "%s-%s" % (release, version)
6566

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

0 commit comments

Comments
 (0)