Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion bin/spark-class.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@ rem
rem This is the entry point for running a Spark class. To avoid polluting
rem the environment, it just launches a new cmd to do the real work.

cmd /V /E /C "%~dp0spark-class2.cmd" %*
echo "%~dp0spark-class2.cmd"|findstr /C:" "
if %ERRORLEVEL% EQU 0 (
cmd /V /E /C "%~dp0spark-class2.cmd" %*
) else (
cmd /V /E /C %~dp0spark-class2.cmd %*
)
7 changes: 6 additions & 1 deletion bin/spark-shell.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@ rem
rem This is the entry point for running Spark shell. To avoid polluting the
rem environment, it just launches a new cmd to do the real work.

cmd /V /E /C "%~dp0spark-shell2.cmd" %*
echo "%~dp0spark-shell2.cmd"|findstr /C:" "
if %ERRORLEVEL% EQU 0 (
cmd /V /E /C "%~dp0spark-shell2.cmd" %*
) else (
cmd /V /E /C %~dp0spark-shell2.cmd %*
)
7 changes: 6 additions & 1 deletion bin/spark-submit.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@ rem
rem This is the entry point for running Spark submit. To avoid polluting the
rem environment, it just launches a new cmd to do the real work.

cmd /V /E /C "%~dp0spark-submit2.cmd" %*
echo "%~dp0spark-submit2.cmd"|findstr /C:" "
if %ERRORLEVEL% EQU 0 (
cmd /V /E /C "%~dp0spark-submit2.cmd" %*
) else (
cmd /V /E /C %~dp0spark-submit2.cmd %*
)