diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2018-07-20 10:21:08 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-07-20 20:21:19 +0200 |
commit | c2e29689013dd1b54a8964bd169c21e36cafe572 (patch) | |
tree | c02ea01858ce5e0999629233c2c529ca6a269dd7 /travis.sh | |
parent | 638d2e22decd739ab53386140deef953678eb6f3 (diff) | |
download | sonarqube-c2e29689013dd1b54a8964bd169c21e36cafe572.tar.gz sonarqube-c2e29689013dd1b54a8964bd169c21e36cafe572.zip |
Fix JDK download URL (final fix)
Diffstat (limited to 'travis.sh')
-rwxr-xr-x | travis.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/travis.sh b/travis.sh index 93cd156115e..b4ad18404fa 100755 --- a/travis.sh +++ b/travis.sh @@ -15,8 +15,8 @@ installJdk8() { pushd ~/jvm > /dev/null if [ ! -d "jdk1.8.0_181" ]; then wget --quiet --continue --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u181-b13/96a7b8442fe848ef90c96a2fad6ed6d1/jdk-8u181-linux-x64.tar.gz - tar xzf jdk-8u171-linux-x64.tar.gz - rm jdk-8u171-linux-x64.tar.gz + tar xzf jdk-8u181-linux-x64.tar.gz + rm jdk-8u181-linux-x64.tar.gz fi popd > /dev/null export JAVA_HOME=~/jvm/jdk1.8.0_171 |