source: zulu-jdk/trunk/SETUP-CYGWIN.bash@ 1568

Last change on this file since 1568 was 1568, checked in by davidb, 23 months ago

JDK binary for Windows using Cygwin, and accompanying SETUP file

File size: 485 bytes
Line 
1
2
3if [ ! -d zulu11.56.19-ca-fx-jdk11.0.15-win_x64 ] ; then
4 echo "Away to unzip zulu11.56.19-ca-fx-jdk11.0.15-win_x64.zip"
5 echo "Press ^C if you do not want this to happen!"
6 sleep 5
7 unzip zulu11.56.19-ca-fx-jdk11.0.15-win_x64.zip
8else
9 echo "Detected zulu11.56.19-ca-fx-jdk11.0.15-win_x64"
10fi
11
12cd zulu11.56.19-ca-fx-jdk11.0.15-win_x64/
13
14echo "Set JAVA_HOME"
15export JAVA_HOME=$PWD
16cd bin/
17echo "Updated PATH to include JAVA_HOME/bin"
18export PATH=$PWD:$PATH
19
20
21cd ../..
Note: See TracBrowser for help on using the repository browser.