diff --git a/components/antlib/scripts/source-archive.py b/components/antlib/scripts/source-archive.py index f165a8c5830..41e05e0b51f 100755 --- a/components/antlib/scripts/source-archive.py +++ b/components/antlib/scripts/source-archive.py @@ -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')