We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128a1bc commit ecd7625Copy full SHA for ecd7625
1 file changed
change-yaml.sh
@@ -15,10 +15,6 @@ function usage() {
15
echo " This value is used to download the spark distribution, and for the"
16
echo " scala image it's used to determine the openshift-spark base image"
17
echo
18
- echo " -l SCALA_VERSION The scala version, like 2.11.8. Applies to the scala image"
19
- echo
20
- echo " -t SBT_VERSION The sbt version, like 0.13.13. Applies to the scala image"
21
22
echo " -h Show this message"
23
}
24
@@ -30,20 +26,14 @@ fi
30
26
# Set the hadoop version
31
27
HVER=2.7
32
28
33
-while getopts r:o:s:l:t:h opt; do
29
+while getopts o:s:h opt; do
34
case $opt in
35
o)
36
OVER=$OPTARG
37
;;
38
s)
39
SPARK=$OPTARG
40
41
- l)
42
- SCALA=$OPTARG
43
- ;;
44
- t)
45
- SBT=$OPTARG
46
47
h)
48
usage
49
exit 0
0 commit comments