Skip to content

Commit ecd7625

Browse files
committed
Remove obsolete options from change_yaml.sh
1 parent 128a1bc commit ecd7625

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

change-yaml.sh

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ function usage() {
1515
echo " This value is used to download the spark distribution, and for the"
1616
echo " scala image it's used to determine the openshift-spark base image"
1717
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-
echo
2218
echo " -h Show this message"
2319
}
2420

@@ -30,20 +26,14 @@ fi
3026
# Set the hadoop version
3127
HVER=2.7
3228

33-
while getopts r:o:s:l:t:h opt; do
29+
while getopts o:s:h opt; do
3430
case $opt in
3531
o)
3632
OVER=$OPTARG
3733
;;
3834
s)
3935
SPARK=$OPTARG
4036
;;
41-
l)
42-
SCALA=$OPTARG
43-
;;
44-
t)
45-
SBT=$OPTARG
46-
;;
4737
h)
4838
usage
4939
exit 0

0 commit comments

Comments
 (0)