blob: a240c8a6c04b7ae9942a1afb32cbc1a7464ad357 [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
19
20elif [ "${1}" = "Callisto" ]
21then
22 fromDir=${HOME}/downloads/webtools/testUpdates
23 toDir=${HOME}/downloads/webtools/updates
24
25else
26 echo ""
27 echo " Unrecognized argument: ${1}"
28 echo " Usage: ${0} <stream>"
29 echo " where <stream> is one of Europa, Callisto"
30 echo ""
31 exit
32fi