From 91f390258d06b2cbbebf34efa7750f9d2d798a50 Mon Sep 17 00:00:00 2001
From: david_williams <david_williams>
Date: Sat, 7 Feb 2009 21:57:00 +0000
Subject: [PATCH] add jax ws (cfx) to update site

---
 .../build-home/runUpdateSiteXmlFiles.sh           | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/org.eclipse.wtp.releng.webupdatesite/build-home/runUpdateSiteXmlFiles.sh b/org.eclipse.wtp.releng.webupdatesite/build-home/runUpdateSiteXmlFiles.sh
index cab394e26..fbc53513c 100644
--- a/org.eclipse.wtp.releng.webupdatesite/build-home/runUpdateSiteXmlFiles.sh
+++ b/org.eclipse.wtp.releng.webupdatesite/build-home/runUpdateSiteXmlFiles.sh
@@ -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}
-- 
GitLab