Skip to content
Snippets Groups Projects
Commit 91f39025 authored by david_williams's avatar david_williams
Browse files

add jax ws (cfx) to update site

parent 4f1be032
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,10 @@ source properties.shsource
# with all the latest version numbers
mv ${updateSite}/site.xml ${updateSite}/.site.xml
if [ "$?" -ne "0" ]
then
exit $?
fi
# merge authored site.xml with the autogenerated one
......@@ -21,8 +25,19 @@ in_newFeatures=${updateSite}/.site.xml
# merges newFeautes in to authored, back in original locaion
java -jar siteFileUpdater.jar ${in_authored} ${in_newFeatures}
if [ "$?" -ne "0" ]
then
exit $?
fi
# copy to discovery site
# Note: here we are changing names from site specific site file name, to generic site.xml
rsync -p ${in_authored} ${updateSite}/site.xml
if [ "$?" -ne "0" ]
then
exit $?
fi
rm ${in_newFeatures}
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