Skip to content

Commit d992ec6

Browse files
committed
Merge pull request alteryx#195 from dhardy92/fix_DebScriptPackage
[Deb] fix package of Spark classes adding org.apache prefix in scripts embeded in .deb
2 parents 1f4a4bc + 92c7cc0 commit d992ec6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repl-bin/src/deb/bin/spark-executor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919

2020
FWDIR="$(cd `dirname $0`; pwd)"
2121
echo "Running spark-executor with framework dir = $FWDIR"
22-
exec $FWDIR/run spark.executor.MesosExecutorBackend
22+
exec $FWDIR/run org.apache.spark.executor.MesosExecutorBackend

repl-bin/src/deb/bin/spark-shell

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
#
1919

2020
FWDIR="$(cd `dirname $0`; pwd)"
21-
exec $FWDIR/run spark.repl.Main "$@"
21+
exec $FWDIR/run org.apache.spark.repl.Main "$@"

0 commit comments

Comments
 (0)