From d671dbc32407f06b2893ffc1bd8438130e40bdfe Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Fri, 10 Nov 2006 16:11:14 +0000 Subject: [PATCH] Hide s-builds by default; update testUpdates and signedUpdates automatically --- releng/org.eclipse.rse.build/bin/doit_sbuild.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/releng/org.eclipse.rse.build/bin/doit_sbuild.sh b/releng/org.eclipse.rse.build/bin/doit_sbuild.sh index 8fe28e73c12..16a9070cdba 100755 --- a/releng/org.eclipse.rse.build/bin/doit_sbuild.sh +++ b/releng/org.eclipse.rse.build/bin/doit_sbuild.sh @@ -58,3 +58,20 @@ sg dsdp-tm-rse -c "rm -rf $HOME/ws/publish/*${daystamp}*/updates" echo "chmod -R g+w $HOME/ws/publish/*${daystamp}*" chmod -R g+w $HOME/ws/publish/*${daystamp}* +#Check the publishing +cd $HOME/ws/publish +cd *${daystamp}* +if [ -f package.count ]; then + #hide the release for now until it is tested + #mirrors will still pick it up + mv package.count package.count.orig + + #Update the testUpdates sites + sg dsdp-tm-rse -c "echo \"Refreshing update site\" " + cd $HOME/downloads-tm/testUpdates/bin + ./mkTestUpdates.sh + sg dsdp-tm-rse -c "echo \"Refreshing signedUpdates site\" " + cd $HOME/downloads-tm/signedUpdates/bin + ./mkTestUpdates.sh + cd "$curdir" +fi