Skip to content
Snippets Groups Projects
Commit 0cc8e6e8 authored by Guillaume Martres's avatar Guillaume Martres
Browse files

Fix quotes

parent d88091b0
No related branches found
No related tags found
No related merge requests found
...@@ -36,8 +36,8 @@ brew cask install adoptopenjdk8 ...@@ -36,8 +36,8 @@ brew cask install adoptopenjdk8
Set it as the default Java version: Set it as the default Java version:
```shell ```shell
echo "export JAVA_HOME=$(/usr/libexec/java_home -v 1.8) >> ~/.bash_profile echo 'export JAVA_HOME="$(/usr/libexec/java_home -v 1.8)"' >> ~/.bash_profile
echo "export PATH="$JAVA_HOME/bin:$PATH" >> ~/.bash_profile echo 'export PATH="$JAVA_HOME/bin:$PATH"' >> ~/.bash_profile
``` ```
### On Windows ### On Windows
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment