From c5349f903cd6a2b1868dadac259141e61fbc6b00 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Thu, 15 Nov 2007 14:44:02 +0000 Subject: [PATCH] Update doc server only on N-builds --- releng/org.eclipse.rse.build/bin/doit_irsbuild.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/releng/org.eclipse.rse.build/bin/doit_irsbuild.sh b/releng/org.eclipse.rse.build/bin/doit_irsbuild.sh index 623d5960d30..46a873ba51a 100755 --- a/releng/org.eclipse.rse.build/bin/doit_irsbuild.sh +++ b/releng/org.eclipse.rse.build/bin/doit_irsbuild.sh @@ -108,7 +108,7 @@ if [ -f package.count -a "$FILES" != "" ]; then ${mydir}/batch_sign.sh `pwd` fi - if [ ${buildType} != M -a -d ../N.latest ]; then + if [ ${buildType} = N -a -d ../N.latest ]; then #update the doc server rm -f ../N.latest/RSE-*.zip rm -f ../N.latest/TM-*.zip @@ -117,8 +117,9 @@ if [ -f package.count -a "$FILES" != "" ]; then cp -f RSE-remotecdt-*.zip ../N.latest/RSE-remotecdt-latest.zip chgrp dsdp-tmadmin ../N.latest/*.zip chmod g+w ../N.latest/*.zip + fi - if [ ${buildType} != N ]; then + if [ ${buildType} != M -a ${buildType} != N ]; then #Update the testUpdates site echo "Refreshing update site" cd $HOME/downloads-tm/testUpdates/bin @@ -129,7 +130,6 @@ if [ -f package.count -a "$FILES" != "" ]; then cd $HOME/downloads-tm/signedUpdates/bin cvs update ./mkTestUpdates.sh - fi fi cd "$curdir"