Skip to content

Commit 7655fe8

Browse files
committed
Remove quotes from PATH env var (they can prevent resolving '~')
1 parent 44892f5 commit 7655fe8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ To place Spark under `/opt/`:
6161

6262
```bash
6363
curl https://downloads.apache.org/spark/spark-3.1.2/spark-3.1.2-bin-hadoop3.2.tgz | sudo tar -xz -C /opt/
64-
export SPARK_HOME="/opt/spark-3.1.2-bin-hadoop3.2"
64+
export SPARK_HOME=/opt/spark-3.1.2-bin-hadoop3.2
6565
export PATH="$SPARK_HOME/bin":"$PATH"
6666
```
6767

6868
To place under `~/`:
6969

7070
```bash
7171
curl https://downloads.apache.org/spark/spark-3.1.2/spark-3.1.2-bin-hadoop3.2.tgz | tar -xz -C ~/
72-
export SPARK_HOME="~/spark-3.1.2-bin-hadoop3.2"
72+
export SPARK_HOME=~/spark-3.1.2-bin-hadoop3.2
7373
export PATH="$SPARK_HOME/bin":"$PATH"
7474
```
7575

0 commit comments

Comments
 (0)