blob: f4b8205dac57fcdb79c7681ef0a8f847d0dafaa4 [file] [log] [blame]
david_williamscdeaa702007-05-26 22:12:58 +00001
2if [ -z "${1}" ]
3then
4
5echo ""
6echo " Need an argument"
7echo " Usage: ${0} <stream>"
8echo " where <stream> is one of Europa, Callisto"
9echo ""
10exit
11
12
13
14
15elif [ "${1}" = "Europa" ]
16then
17 fromDir=${HOME}/downloads/webtools/declaredUpdates
18 toDir=${HOME}/downloads/webtools/milestones
david_williams2b925b12007-05-27 06:38:35 +000019 updateSite=${HOME}/downloads/webtools/declaredUpdates
20 mainSiteFileName=siteEuropa.xml
21 mainIndexFileName=indexEuropa.html
22 fileListFile=updateEuropaMirrorAll.xml
david_williamscdeaa702007-05-26 22:12:58 +000023
24elif [ "${1}" = "Callisto" ]
25then
26 fromDir=${HOME}/downloads/webtools/testUpdates
27 toDir=${HOME}/downloads/webtools/updates
david_williams2b925b12007-05-27 06:38:35 +000028 updateSite=${HOME}/downloads/webtools/testUpdates
29 mainSiteFileName=siteCallisto.xml
30 mainIndexFileName=indexCallisto.html
31 fileListFile=updateCallistoMirrorAll.xml
david_williamscdeaa702007-05-26 22:12:58 +000032
33else
34 echo ""
35 echo " Unrecognized argument: ${1}"
36 echo " Usage: ${0} <stream>"
37 echo " where <stream> is one of Europa, Callisto"
38 echo ""
39 exit
40fi