Skip to content

Commit

Permalink
[SPARK-3808] PySpark fails to start in Windows
Browse files Browse the repository at this point in the history
Modified syntax error of *.cmd script.

Author: Masayoshi TSUZUKI <[email protected]>

Closes apache#2669 from tsudukim/feature/SPARK-3808 and squashes the following commits:

7f804e6 [Masayoshi TSUZUKI] [SPARK-3808] PySpark fails to start in Windows
  • Loading branch information
tsudukim authored and andrewor14 committed Oct 7, 2014
1 parent d65fd55 commit 12e2551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/compute-classpath.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if exist "%FWDIR%conf\spark-env.cmd" call "%FWDIR%conf\spark-env.cmd"
rem Build up classpath
set CLASSPATH=%SPARK_CLASSPATH%;%SPARK_SUBMIT_CLASSPATH%

if "x%SPARK_CONF_DIR%"!="x" (
if not "x%SPARK_CONF_DIR%"=="x" (
set CLASSPATH=%CLASSPATH%;%SPARK_CONF_DIR%
) else (
set CLASSPATH=%CLASSPATH%;%FWDIR%conf
Expand Down

0 comments on commit 12e2551

Please sign in to comment.