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

build.sh: create correct symbolic link for JavaDoc

SVN: 37801
parent e113bdbd
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,16 @@ mv tmp/openbis_standard_technologies/targets/gradle/distributions/openBIS-client
mv tmp/installation/targets/gradle/distributions/openBIS-installation-standard-technologies*.tar.gz .
mv tmp/plasmid/targets/gradle/distributions/datastore_server_plugin-plasmid*.zip .
cp -r tmp/openbis_standard_technologies/targets/gradle/docs/javadoc ~openbis/fileserver/doc/openbis/$FULL_VER
cd ~openbis/fileserver/doc/openbis
if [ ${FULL_VER:0:1} == "S" ]; then
rm current
ln -s $FULL_VER current
else
dir=${FULL_VER%.*}
rm $dir
ln -s $FULL_VER $dir
fi
cd -
move_to_file_server
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