Skip to content

Commit

Permalink
Add export GRAALVM_HOME=/Users/ogupalo/.sdkman/candidates/java/curren…
Browse files Browse the repository at this point in the history
…t command after switching Java version
  • Loading branch information
olyagpl committed Aug 30, 2024
1 parent c0b3117 commit b4d9933
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,13 @@ In this workshop you will:
wget -q https://download.oracle.com/graalvm/21/latest/graalvm-jdk-21_linux-x64_bin.tar.gz && tar xvzf graalvm-jdk-21_linux-x64_bin.tar.gz && rm -f graalvm-jdk-21_linux-x64_bin.tar.gz
```
```bash
export JAVA_HOME=/home/opc/graalvm-jdk-23+36.1
export JAVA_HOME=/path/to/graalvm-jdk-23+36.1
```
```bash
export PATH=/home/opc/graalvm-jdk-23+36.1/bin:$PATH
export GRAALVM_HOME=$JAVA_HOME
```
```bash
export PATH=$JAVA_HOME/bin:$PATH
```
```bash
java -version
Expand Down

0 comments on commit b4d9933

Please sign in to comment.