From 999d0d0b9ecab09171ae1bbdbde22c4e1bc6f6ae Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Thu, 9 Dec 2021 10:43:35 -0800 Subject: [PATCH] Fix path --- docs/spark/tutorials/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/spark/tutorials/get-started.md b/docs/spark/tutorials/get-started.md index 9cfab5d3f59ac..04b7e9ae9d449 100644 --- a/docs/spark/tutorials/get-started.md +++ b/docs/spark/tutorials/get-started.md @@ -77,7 +77,7 @@ Run the following commands to set the environment variables used to locate Apach ```console setx /M HADOOP_HOME C:\bin\spark-3.0.1-bin-hadoop2.7\ setx /M SPARK_HOME C:\bin\spark-3.0.1-bin-hadoop2.7\ -setx /M PATH "%PATH%;%HADOOP_HOME%;%SPARK_HOME%\bin" # Warning: Don't run this if your path is already long as it will truncate your path to 1024 characters and potentially remove entries! +setx /M PATH "%PATH%;%HADOOP_HOME%;%SPARK_HOME%bin" # Warning: Don't run this if your path is already long as it will truncate your path to 1024 characters and potentially remove entries! ``` #### [Mac/Linux](#tab/linux)