blob: a36bfe8a4078b1a75df239425a8b00e45a69e485 [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_williams09e75e12007-06-28 02:56:11 +000019 milestoneDir=${HOME}/downloads/webtools/milestones
20 releaseDir=${HOME}/downloads/webtools/updates
david_williams2b925b12007-05-27 06:38:35 +000021 updateSite=${HOME}/downloads/webtools/declaredUpdates
22 mainSiteFileName=siteEuropa.xml
23 mainIndexFileName=indexEuropa.html
24 fileListFile=updateEuropaMirrorAll.xml
david_williamscdeaa702007-05-26 22:12:58 +000025
26elif [ "${1}" = "Callisto" ]
27then
28 fromDir=${HOME}/downloads/webtools/testUpdates
29 toDir=${HOME}/downloads/webtools/updates
david_williams2b925b12007-05-27 06:38:35 +000030 updateSite=${HOME}/downloads/webtools/testUpdates
31 mainSiteFileName=siteCallisto.xml
32 mainIndexFileName=indexCallisto.html
33 fileListFile=updateCallistoMirrorAll.xml
david_williamscdeaa702007-05-26 22:12:58 +000034
35else
36 echo ""
37 echo " Unrecognized argument: ${1}"
38 echo " Usage: ${0} <stream>"
39 echo " where <stream> is one of Europa, Callisto"
40 echo ""
41 exit
42fi