Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
More conservative : Check before adding quotes in spark/bin/spark-sub…
…mit.cmd files. In fact the same effect as last commit because currently it doesn't work if full path to spark-submit.cmd has space.
  • Loading branch information
lqm678 committed Aug 26, 2016
commit 7059639a21138f494e83da5bbfe800dfca7789d8
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 %*
)