Skip to content

Commit 1bff495

Browse files
committed
remove jre option
1 parent 5ba7a1d commit 1bff495

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

install-clara

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,9 @@ trap cleanup EXIT
7171
# Configure:
7272
debug=0
7373
args=()
74-
usage="Usage: install-clara [-v] [-b] [-f CLARA] [-c COATJAVA] [-g GRAPES] [-j JRE] PATH"
74+
usage="Usage: install-clara [-v] [-b] [-f CLARA] [-c COATJAVA] [-g GRAPES] PATH"
7575
info="\
7676
- The default COATJAVA/CLARA/GRAPES versions are $coatjava/$clara/$grapes.\n\
77-
- Unless requested, no JRE will be included in the installation.\n\
7877
- COATJAVA can also be specified as a local installation directory.\n\
7978
- [-v adds verbosity and disables cleanup]\n\
8079
- [-b builds clara from source]"
@@ -86,7 +85,6 @@ do
8685
-f) clara="$2" && shift && shift ;;
8786
-c) coatjava="$2" && shift && shift ;;
8887
-g) grapes="$2" && shift && shift ;;
89-
-j) jre="$2" && shift && shift ;;
9088
-b) build=1 && shift ;;
9189
-v) let debug=$debug+1 && shift ;;
9290
-*|--*) echo -e "$usage\n\nUnknown option: $1" && exit 1 ;;
@@ -146,11 +144,3 @@ get https://clasweb.jlab.org/clas12offline/distribution/grapes/grapes-$grapes.ta
146144
mv grapes-$grapes clara-cre/plugins/grapes
147145
mv -f clara-cre/plugins/grapes/bin/clara-grapes clara-cre/bin/
148146

149-
# JRE:
150-
#if ! [ -z ${jre+x} ]
151-
#then
152-
# echo -e "\nRetrieving JRE version $jre ..."
153-
# mkdir clara-cre/jre
154-
# get https://userweb.jlab.org/~gurjyan/clara-cre/linux-64-$jre.tar.gz clara-cre/jre
155-
#fi
156-

0 commit comments

Comments
 (0)