Skip to content

Commit

Permalink
Installing JDK into /tmp directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaroslav Tulach committed Sep 29, 2019
1 parent f201de2 commit 75e792f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
before_install:
- sudo apt-get -qq update || echo no sudo apt-get
- sudo apt-get install -y libwebkitgtk-3.0-0 || echo no sudo apt-get
- if [ -n "$URL" ]; then curl $URL -o jdk.tgz; tar fxz jdk.tgz; JAVA_HOME=`pwd`/$DIR; export JAVA_HOME; fi
- if [ -n "$URL" ]; then pushd /tmp; curl $URL -o jdk.tgz; tar fxz jdk.tgz; JAVA_HOME=`pwd`/$DIR; popd; export JAVA_HOME; fi
- echo Java is $JAVA_HOME
- ls -l $JAVA_HOME
before_script:
Expand Down

0 comments on commit 75e792f

Please sign in to comment.