Skip to content
Snippets Groups Projects
Commit d5b260e7 authored by Takuya UESHIN's avatar Takuya UESHIN
Browse files

Change the order of CLASSPATH.

parent f4effb37
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ fi ...@@ -124,7 +124,7 @@ fi
# Compute classpath using external script # Compute classpath using external script
CLASSPATH=`$FWDIR/bin/compute-classpath.sh` CLASSPATH=`$FWDIR/bin/compute-classpath.sh`
CLASSPATH="$SPARK_TOOLS_JAR:$CLASSPATH" CLASSPATH="$CLASSPATH:$SPARK_TOOLS_JAR"
export CLASSPATH export CLASSPATH
if [ "$SPARK_PRINT_LAUNCH_COMMAND" == "1" ]; then if [ "$SPARK_PRINT_LAUNCH_COMMAND" == "1" ]; then
......
...@@ -75,7 +75,7 @@ rem Compute classpath using external script ...@@ -75,7 +75,7 @@ rem Compute classpath using external script
set DONT_PRINT_CLASSPATH=1 set DONT_PRINT_CLASSPATH=1
call "%FWDIR%bin\compute-classpath.cmd" call "%FWDIR%bin\compute-classpath.cmd"
set DONT_PRINT_CLASSPATH=0 set DONT_PRINT_CLASSPATH=0
set CLASSPATH=%SPARK_TOOLS_JAR%;%CLASSPATH% set CLASSPATH=%CLASSPATH%;%SPARK_TOOLS_JAR%
rem Figure out where java is. rem Figure out where java is.
set RUNNER=java set RUNNER=java
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment