Skip to content

Commit

Permalink
Merge pull request #4893 from 81dr/master
Browse files Browse the repository at this point in the history
Update installation script
  • Loading branch information
ripcurlx authored Jan 7, 2021
2 parents fdf7912 + c5d1faf commit 9b2c0e8
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions scripts/install_java.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
# echo 'export JAVA_HOME=/Library/Java/JavaVirtualMachines/<ENTER_NEW_JDK>/Contents/Home' >>~/.bash_profile
# echo 'export PATH=$JAVA_HOME/bin:$PATH' >>~/.bash_profile
# source ~/.bash_profile

set -e

unameOut="$(uname -s)"
case "${unameOut}" in
Linux*)
Linux*)
JAVA_HOME=/usr/lib/jvm/openjdk-10.0.2
JDK_FILENAME=openjdk-10.0.2_linux-x64_bin.tar.gz
JDK_URL=https://download.java.net/java/GA/jdk10/10.0.2/19aef61b38124481863b1413dce1855f/13/openjdk-10.0.2_linux-x64_bin.tar.gz
Expand All @@ -27,7 +27,7 @@ case "${unameOut}" in
osInfo[/etc/SuSE-release]=zypp
osInfo[/etc/debian_version]=apt-get

for f in ${!osInfo[@]}
for f in "${!osInfo[@]}"
do
if [[ -f $f ]]; then
PACKAGE_MANAGER=${osInfo[$f]}
Expand Down Expand Up @@ -74,9 +74,10 @@ case "${unameOut}" in
fi

echo export JAVA_HOME=$JAVA_HOME >>~/.bash_profile
echo export PATH=$JAVA_HOME/bin:$PATH >>~/.bash_profile
source ~/.bash_profile
echo export PATH=$JAVA_HOME/bin:"$PATH" >>~/.bash_profile
source "$HOME/.bash_profile"
;;
*) machine="UNKNOWN:${unameOut}"
*)
esac
java -version

0 comments on commit 9b2c0e8

Please sign in to comment.