Skip to content
Snippets Groups Projects
Commit 9645eca6 authored by felmer's avatar felmer
Browse files

SP-859, BIS-512: Take the version number of openbis standard technologies...

SP-859, BIS-512: Take the version number of openbis standard technologies distribution as the version number of the installer.

SVN: 29699
parent f333c8b3
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
<param name="test.suite" value="tests.xml" /> <param name="test.suite" value="tests.xml" />
</antcall> </antcall>
</target> </target>
<target name="dist" depends="dist-standard-technologies"> <target name="dist" depends="dist-standard-technologies">
</target> </target>
...@@ -52,7 +52,20 @@ ...@@ -52,7 +52,20 @@
</target> </target>
<target name="create-installation-tarball"> <target name="create-installation-tarball">
<property name="tarball.basename" value="openBIS-installation${variant}-${version.number}-r${revision.number}" /> <pathconvert property="extracted.version">
<path>
<fileset dir="${openbis.server.zip.folder}">
<include name="openBIS-server${variant}-*.zip"/>
</fileset>
</path>
<chainedmapper>
<flattenmapper/>
<filtermapper>
<replaceregex pattern="openBIS-server${variant}-(.*)\.zip" replace="\1"/>
</filtermapper>
</chainedmapper>
</pathconvert>
<property name="tarball.basename" value="openBIS-installation${variant}-${extracted.version}" />
<antcall target="create-installer"/> <antcall target="create-installer"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment