blob: 9868d23cc6fe598e1e6170d584bc3fefabbb89bc [file] [log] [blame]
david_williams944068e2007-02-10 19:13:11 +00001
2# This script should be "copied up" and ran from a
3# directory "above" the main working directories of
4# $updateToolsDir.
5# This is typically the users $HOME directory
6
7updateToolsDir=org.eclipse.wtp.releng.webupdatesite
8
9echo " "
10echo " Removing old $updateToolsDir and exporting fresh HEAD versions."
11echo " "
12
13rm -fr $updateToolsDir
14echo " "
15
16# ISSUE: we should move away from using 'head' version
17# Note: we can use "local host" since we are running on the same cluser as the cvs server
18# otherwise, if running remotely, localhos should be changed to 'dev.eclpise.org'
19cvs -Q -f -d :pserver:anonymous@dev.eclipse.org:/cvsroot/webtools export -r HEAD $updateToolsDir
20
david_williamsba342eb2007-02-10 19:15:44 +000021dos2unix -q $updateToolsDir/build-home/*.sh
22dos2unix -q $updateToolsDir/build-home/*.xml
david_williams944068e2007-02-10 19:13:11 +000023chmod -R +x $updateToolsDir/build-home/*.sh
24
25
26echo " for complete refresh, use something similar to following"
27echo " "
28echo " cd $updateToolsDir/build-home/"
29echo " screen -x"
30echo " #for Callisto"
31echo " ./runUpdateAllProjects.sh -clean | tee out.txt"
32echo " #for Europa"
33echo " ./runUpdateAllEuropaProjects.sh -clean | tee out.txt"
34echo " "
35echo " When complete, be sure to inspect or at least grep the out.txt file for anomilies, e.g. "
36echo " grep failed out.txt"
37echo " grep error out.txt"
38echo " grep exception out.txt"
39echo " "